You should know that variable values are cyclic in Java. public class Test{ public static void main(String args[]){ System.out.println(Integer.MAX_VALUE); System.out.println(Integer.MIN_VALUE); int x = Integer.MAX_VALUE +…
You should know that variable values are cyclic in Java. public class Test{ public static void main(String args[]){ System.out.println(Integer.MAX_VALUE); System.out.println(Integer.MIN_VALUE); int x = Integer.MAX_VALUE +…