Computer Science, asked by indrasish45, 1 year ago

WAP to find out the minimum number between any two values

Answers

Answered by MrCoder
0
//THE CODE BELOW IS IN JAVA

int a=10, b=20;
int min=Math.min (a, b);
System.out.println (min)/*this will print minimum number between a and b*/
Similar questions