✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виконує код: #include <iostream>#include <Windows.h>using namespace std;int main(){ SetConsoleCP(1251); SetConsoleOutputCP(1251); int c1,c2; cout << "Ведіть число1"; cin >> c1; cout << "ведіть число2"; cin >> c2; cout << "число1" << c1 << "число2" << c2 << "\\n"; if (c1 < c2) cout << c1 << "менше" << c2; if (c1 > c2) cout << c1 << "більше" << c2; if (c1 == c2) cout << c1 << "рівне" << c2; return 0;}