Computer Science, asked by Shorya213H, 4 months ago

Write algorithm to find the largest among three numbers entered by user​

Answers

Answered by jiyashah2901
1

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