Answers for "long long max value"

2

max long

long MaxLong = 9223372036854775807; // 9,223,372,036,854,775,807
Posted by: Guest on June-23-2021
-2

max long value java

/**
 * A simple application that looks up the value of Long.MAX_VALUE and outputs it to the user.
 **/
public class Test {
	public static void main(String[] args) {
		System.out.println("The maximum Long value is: "+Long.MAX_VALUE);
	}
}
Posted by: Guest on November-27-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language