Відповідь:#include <iostream>
#include <cmath>
using namespace std;
int main() {
float x, y, z, max;
cin >> x >> y >> z;
if (x+y+z > x*y*z) {
max = x+y+z;
cout << "max=x+y+z=" << max << endl;
} else if (x+y+z < x*y*z) {
max = x*y*z;
cout << "max=x*y*z=" << max << endl;
} else {
cout << "x*y*z=x+y+z=" << max << endl;
}
return 0;
Пояснення:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:#include <iostream>
#include <cmath>
using namespace std;
int main() {
float x, y, z, max;
cin >> x >> y >> z;
if (x+y+z > x*y*z) {
max = x+y+z;
cout << "max=x+y+z=" << max << endl;
} else if (x+y+z < x*y*z) {
max = x*y*z;
cout << "max=x*y*z=" << max << endl;
} else {
max = x*y*z;
cout << "x*y*z=x+y+z=" << max << endl;
}
return 0;
}
Пояснення: