Menu
×
×
正确
int x = 50;
int y = 50;
@(2) (x @(2) y) {
cout << "1";
} @(7) (x @(1) y) {
cout << "2";
} @(4) {
cout << "3";
}
int x = 50;
int y = 50;
if (x == y) {
cout << "1";
} else if (x > y) {
cout << "2";
} else {
cout << "3";
}
不正确
点击 此处 重试 正确
下一题 ❯int x = 50; int y = 50;w3exercise_input_no_0(xw3exercise_input_no_1y) { cout << "1"; }w3exercise_input_no_2(xw3exercise_input_no_3y) { cout << "2"; }w3exercise_input_no_4{ cout << "3"; } |