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)
     }
}

Comments

Popular posts from this blog

Polymorphism Means