Menu
×
×
Correct!
Exercise:Print "1" if
int x = 50;
int y = 50;
if (x == y) {
System.out.println("1");
} else if (x > y) {
System.out.println("2");
} else {
System.out.println("3");
}
Not CorrectClick here to try again. Correct!Next ❯int x = 50; int y = 50;(x y) { System.out.println("1"); } (x > y) { System.out.println("2"); } { System.out.println("3"); } |