Menu
×
×
Correct!
Exercise:Print "Yes" if
int x = 50;
int y = 50;
@(2) (x @(2) y) {
cout << "Yes";
} @(4) {
cout << "No";
}
int x = 50;
int y = 50;
if (x == y) {
cout << "Yes";
} else {
cout << "No";
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 58 exercises.
Are you sure you want to continue?