Computer Science, asked by shifa6952, 9 months ago

write a program to find the minimum of three numbers by using min function?​

Answers

Answered by agnideepcms
3

Answer:

Let the numbers are in variables a,b and c

int min=Math.min(a,b);

min=Math.min(min,c);

We will get the minimum of the three numbers in the variable min

Similar questions