Math, asked by punaseneha137, 4 months ago

maximum
1) To find pseudocode of maximum 3 numbers

Answers

Answered by raotd
0

Answer:How do you find the maximum of three numbers?

A number num1 among three numbers num1 , num2 and num3 is said maximum if num1 > num2 and num1 > num3 . Here we will use logical AND && operator to combine two conditions together. Maximum between three numbers is determined by three cases. num1 is maximum if num1 > num2 and num1 > num3 .

Step-by-step explanation:

Similar questions