InterviewSolution
Saved Bookmarks
| 1. |
Write an algorithm to print the bigger of any two unique given numbers. |
|
Answer» The algorithm as : Step 1: Read two numbers A and B. Step 2: Compare A and B. Step 3: If A is greater than B then, print A else print B. Step 4: Stop. |
|