Menu
×
×
Correct!
Exercise:Print "Yes" if
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 ❯int x = 50; int y = 50;(x y) { System.out.println("Yes"); } { System.out.println("No"); } |