Write an algorithm to find the largest of three given numbers.
Answers
Answered by
84
If the numbers are to be given by the user then following algorithm is the basic one by using nested if statements.
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
Answered by
26
it's Surely help you . lf you like this pls give a thanks ....
Attachments:
Similar questions