Posts

Showing posts from May, 2016

java program to print Datatype Ranges

public class HelloWorld {         public static void main(String []args) {         System.out.println(Integer.MAX_VALUE);         System.out.println(Integer.MIN_VALUE);         System.out.print(Short.MAX_VALUE);         System.out.println(Short.MIN_VALUE)      } }