+91-85006-22255
What will be the output of the following program?
public class Doubt { public static void main(String s[]) { int x = 20; int y = 25; if (++x < (y = y -= 4) || (x = x += 4) > y) { System.out.println(x + "," + y); } }}
Topic: if Condition In Java
Read this topic Take test on this topic
Open In App