The _______ function will return minimum of two numbers from the given two numbers
Answers
Answered by
0
Explanation:
min() is an inbuilt method in Java which is used to return Minimum or Lowest value from the given two arguments.
Answered by
0
Answer:
First give a meaningful name to our function. Say max () function is used to find maximum between two numbers. Second, we need to find maximum between two numbers. Hence, the function must accept two parameters of int type say, max (int num1, int num2). Finally, the function should return maximum among given two numbers.
Explanation:
Similar questions