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