Menu
×
×
Correct!
Exercise:Print "1" if
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";
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 58 exercises.
Are you sure you want to continue?