Computer Science, asked by sachinkalasgonda, 3 months ago

write algorithm to find greatest number between three numbers​

Answers

Answered by balaji34591
1

Answer:

Algorithm to find the largest of three numbers: 1. Start 2. Read the three numbers to be compared, as A, B and C. 3. Check if A is greater than B. 3.1 If true, then check if A is greater than C. 3.1.1 If true, print 'A' as the greatest number. 3.1.2 If false, print 'C' as the greatest number.

Explanation:

Similar questions