Answers for "java long"

0

java long literal

to declare a Long literal in java, add 'L' to the end of
an integer literal

examples:
12312345514316L
59741316635446100055330L
465414966143L
Posted by: Guest on October-05-2020
0

long in java

long minValue = -92,23,37,20,36,85,47,75,808;
long maxValue = 92,23,37,20,36,85,47,75,807;
Posted by: Guest on June-16-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