Define two functions to print the maximum and the minimum number respectively among three numbers entered by user.
Answers
Answered by
3
In java it is :-
int min = Math.min(num1,num2,num3);
Similar questions