public class Test { public static void main(String[] sr) { int x, y, z; x = 1; y = 2; z = 3; System.out.println(z >= y >= x); //1 System.out.println(z >= y && y >= x); //2 } }
Login in to like
Login in to comment
or Read more about Java Quizzes
Login in to like
Login in to comment