write an algorithm to find the greater number between the three numbers, A, B and C
Answers
Answered by
0
Answer:
Algorithm : a
Step 1 : Start.
Start 2 : Input A, B, C.
Start 3 : Let max = A.
Start 4 : if B > max then max = B.
Start 5 : if C > max then max = C.
Start 6 : Output max is largest.
Start 7 : Stop.
Answered by
1
Answer:
Algorithm : a
Step 1 : Start.
Start 2 : Input A, B, C.
Start 3 : Let max = A.
Start 4 : if B > max then max = B.
Start 5 : if C > max then max = C.
Start 6 : Output max is largest.
Start 7 : Stop
Similar questions