Computer Science, asked by hassankhanwazir12, 2 months ago

Define two functions to print the maximum and the minimum number respectively among three numbers entered by user.

Answers

Answered by balpreet20
3

In java it is :-

int min = Math.min(num1,num2,num3);

Similar questions