Язык C++. #include < iostream > using namespace std; int main() { int x, y, z; cout << "Введите три числа: " << endl; cin >> x >> y >> z; cout << "Наименьшее число: "; if (x < y && x < z) cout << x << endl; else if (y < x && y < z) cout << y << endl; else cout << z << endl; }
#include < iostream >
using namespace std;
int main() {
int x, y, z;
cout << "Введите три числа: " << endl;
cin >> x >> y >> z;
cout << "Наименьшее число: ";
if (x < y && x < z)
cout << x << endl;
else if (y < x && y < z)
cout << y << endl;
else
cout << z << endl;
}