Answers for "smallest integer java"

1

java max int value

public class Test
{
   public static void main(String[] args)
   {
     System.out.println(Integer.MIN_VALUE);
     System.out.println(Integer.MAX_VALUE);
     System.out.println(Integer.MIN_VALUE - 1);
     System.out.println(Integer.MAX_VALUE + 1);
   }
}
Posted by: Guest on November-18-2020
0

smallest int in java

// min value that an int can store:
Integer.MIN_VALUE
// max value that an int can store:
Integer.MAX_VALUE
// min value that a long can store:
Long.MIN_VALUE
// max value that a long can store:
Long.MAX_VALUE
Posted by: Guest on February-25-2021

Code answers related to "smallest integer java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language