get smallest value of 4 variables java code example
Example: smallest int in java
// min value that an int can store:
Integer.MIN_VALUE
// max value that an int can store:
Integer.MAX_VALUE
// min value that a long can store:
Long.MIN_VALUE
// max value that a long can store:
Long.MAX_VALUE