Answers for "math.max integer java"

1

java max int value

public class Test
{
   public static void main(String[] args)
   {
     System.out.println(Integer.MIN_VALUE);
     System.out.println(Integer.MAX_VALUE);
     System.out.println(Integer.MIN_VALUE - 1);
     System.out.println(Integer.MAX_VALUE + 1);
   }
}
Posted by: Guest on November-18-2020
1

math max java

//	Math.max(a, b);
dataType max(dataType num1, dataType num2)
The datatypes can be int, float, double or long.

Parameters : The function accepts two parameters num1 and num2 
among which the maximum is returned.
Posted by: Guest on May-15-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language