Write a Algorithm and Flowchart to find the greater number of two numbers.
Answers
Answered by
3
Answer:
If (num1 > num2) and (num1 > num3) Print num1. Else if (num2 > num1) and (num 2 > num3)
Explanation:
Step 1: Start.
Step 2: Read a, b . / * a, b two numbers */
Step 3: If a>b then /*Checking */
4 Display “a is the largest number”.
Otherwise.
5 Display “b is the largest number”.
Similar questions