Maximum Value Of Long Java Code Example


Example 1: long max value java

Long.MAX_VALUE == 9_223_372_036_854_775_807L // (9223372036854775807) Long.MIN_VALUE == -9_223_372_036_854_775_808L // (-9223372036854775808)

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

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?