Nelub123 N Nelub123 Регистрация 29 Дек 2013 Сообщения 62 Репутация 0 Спасибо 0 Монет 0 26 Ноя 2016 #1 #include ; using namespace std; int main() { setlocale(0, ""); int a, c; cout << "Введите два числа..." << endl; cin >> a, c; if (a > c) cout << a << ">" << c << endl; else if (a < c) cout << a << "<" << c << endl; else cout << a << "==" << c << endl; system("pause"); return 0; }
#include ; using namespace std; int main() { setlocale(0, ""); int a, c; cout << "Введите два числа..." << endl; cin >> a, c; if (a > c) cout << a << ">" << c << endl; else if (a < c) cout << a << "<" << c << endl; else cout << a << "==" << c << endl; system("pause"); return 0; }