Saved Bookmarks
| 1. |
DRAW AN ALGORITHM ACCEPT 3 NO.S AND PRINT THE LARGER........................ SEND A PIC |
|
Answer» Step 1: Start Step 2: Declare VARIABLES a,b and c. Step 3: Read variables a,b and c. Step 4: If a>b If a>c Display a is the LARGEST number. Else Display c is the largest number. Else If b>c Display b is the largest number. Else Display c is the greatest number. Step 5: Stop |
|