InterviewSolution
Saved Bookmarks
| 1. |
Write an algorithm to compare three given numbers |
|
Answer» Answer: Step 1 : Start Step 2 : DECLARE three variables a, b, c Step 3: initialize the values into the three variables a, b, c Step 4: compare a, b, c as if a>b and a>c Print a Is large Step 5: else if b>c Print b is large Step 6: else print c is big Step 7: STOP Explanation: DO FOLLOW FOR MORE ANSWERS/PROGRAMS MARK AS BRAINLIEST |
|