#include using namespace std;

int main()
{
setlocale(0, "");

int a, b;
cout << "Введите первое число " << endl;
cin >> a;
cout << "Введите второе число " << endl;
cin >> b;
if (a < b) {
cout << "Второе число больше первого " << endl;
}
else if (a == b) {
cout << "Числа равны" << endl;
}
else {
cout << "Первое число больше второго " << endl;
}
std::system("pause");

}

Что не так с кодом?
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.