Menu
×
×
Correct!
Exercise:Fill in the missing parts to print the value
int x = 10;
int y = 9;
System.out.println(x > y);
int x = 10;
int y = 9;
System.out.println(y < x);
Not CorrectClick here to try again. Correct!Next ❯int x = 10; int y = 9; System.out.println(); |