Saved Bookmarks
| 1. |
Write an algorithm to find largest number in a input three numbers. |
|
Answer» Step 1: start. Step 2: input a, b,c Step 3: let Max=a . Step 4: is b > Max? then Max = b Step 5: is c > max? then Max = c Step 6: print Max Step 7: stop |
|