fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3.  
  4.  
  5. /* Name of the class has to be "Main" only if the class is public. */
  6. class Ideone
  7. {
  8. public static void main (String[] args) throws java.lang.Exception
  9. {
  10. int alpha = 61;
  11. System.out.print("alpha");
  12. System.out.println('B'+ 11);
  13. System.out.println(alpha + 11);
  14. System.out.println(Integer.MIN_VALUE);
  15. System.out.println(Long.MIN_VALUE);
  16. int num = Integer.MAX_VALUE;
  17. num=num+1;
  18. System.out.println(num);
  19. }
  20. }
Success #stdin #stdout 0.06s 32284KB
stdin
Standard input is empty
stdout
alpha77
72
-2147483648
-9223372036854775808
-2147483648