1Long.MAX_VALUE == 9_223_372_036_854_775_807L // (9223372036854775807)
2Long.MIN_VALUE == -9_223_372_036_854_775_808L // (-9223372036854775808)
1/**
2 * A simple application that looks up the value of Long.MAX_VALUE and outputs it to the user.
3 **/
4public class Test {
5 public static void main(String[] args) {
6 System.out.println("The maximum Long value is: "+Long.MAX_VALUE);
7 }
8}