Answers for "long integer max value"

3

max long

long MaxLong = 9223372036854775807; // 9,223,372,036,854,775,807
Posted by: Guest on June-23-2021
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