Задание167.R 

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> #include "cmath" using namespace std; int main() { int a, b, c; cout << "Введите a: " << endl; cin >> a; cout << "Введите b: " << endl; cin >> b; cout << "Введите c: " << endl; cin >> c; if ((a > b) && (a > c)) { cout << b * c; } if ((b > a) && (b > c)) { cout << a * c; } if ((c > b) && (c > a)) { cout << b * a; } return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines