Write flow chart and algorithm to find the largest of three numbers
Answers
Answered by
1
Explanation:
Solution
Algorithm:
1. Start
2. Input A,B,C
3. If (A>B) and (A>C) then print “A is greater”.
Else if (B>A) and (B>C) then print “B is greater”.
Else print “C is greater”.
4. Stop
Attachments:
Similar questions