Answers for "integer max value java"

3

max in array java

// Initializing array of integers 
        Integer[] num = { 2, 4, 7, 5, 9 }; 
// using Collections.min() to find minimum element 
        // using only 1 line. 
        int min = Collections.min(Arrays.asList(num)); 
  
        // using Collections.max() to find maximum element 
        // using only 1 line. 
        int max = Collections.max(Arrays.asList(num));
Posted by: Guest on September-24-2020
1

max int in java

int a = Integer.MAX_VALUE;
long a = Long.MAX_VALUE;
Posted by: Guest on August-09-2021
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
3

Integer.MAX_VALUE

public int x = Integer.MAX_VALUE;

System.out.println(x)

// prints out 2147483647. you can't go over this number
Posted by: Guest on July-31-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language