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