118k views
2 votes
I. Write a pseudo code to find the greatest of 3 numbers represented as A, B, and C.

User Chocorean
by
7.6k points

1 Answer

3 votes
1. Start
2. Input A, B, C
3. If A > B and A > C, then
4. Display A is the greatest number
5. Else if B > A and B > C, then
6. Display B is the greatest number
7. Else
8. Display C is the greatest number
9. End If
10. End
User Roy Peleg
by
8.1k points

No related questions found