Computer Science, asked by satyamsatyamnn, 1 year ago

write down the syntax for the functions of java programming to find the smaller between two numbers

Answers

Answered by mohit0404
35

if (num1 < num2)

system.out.print(num1);

else

system.out.print(num2)

Answered by vk6859402
1

Answer:

math. min (a,b)

Explanation:

this is the answer

Similar questions