Write an algorithm to find the greatest number among three given numbers.
Algorithm to find the greatest number among three numbers: Start Input three numbers, A, B, and C If A > B and A > C, then Print “A is the greatest number.” Else if B > A and B > C, then Print “B is the greatest number.” Else Print “C is the greatest number.” … Read more