Saved Bookmarks
| 1. |
How to find max between 3 numbers |
|
Answer» Step-by-step explanation: Input THREE numbers from user. Store it in some variable say num1 , num2 and num3 . COMPARE first two numbers i.e. num1 > num2 . If the statement is true then num2 is SURELY not max value. ... If the statement num1 > num2 is false . |
|