Write an algorithm to print the bigger of any two unique given numbers.
Answers
Answered by
0
1. start
2. input a,b
3. is a>b?
yes: print a "is greatest"
no: print b "is greatest"
4. end
Similar questions