Write a solution to the problem of finding the largest number out of three numbers.
List the specific steps that would enable another person to find the largest among three numbers presented.
Answers
Answered by
3
Answer:
Take the three numbers and store it in the variables num1, num2 and num3 respectively.
Firstly check if the num1 is greater than num2.
If it is, then check if it is greater than num3.
If it is, then print the output as “num1 is the greatest among three”.
Otherwise print the ouput as “num3 is the greatest among three”.
Similar questions