Computer Science, asked by zainabbaig, 2 months ago

write an algorithm to find largest of three numbers​

Answers

Answered by Sonikrupa
6

Explanation:

Algorithm : a

Step 1 : Start.

Start 2 : Input A, B, C.

Start 3 : Let max = A.

Start 4 : if B > max then max = B.

Start 5 : if C > max then max = C.

Start 6 : Output max is largest.

Start 7 : Stop.

Similar questions