→Write or type an algorithm to find the greatest of the given three numbers use the IF- THEN- ELSE structure←
Answers
Answered by
0
Explanation:
C program to Find the Largest Number Among Three Numbers
Given three numbers A, B and C; The task is to find the largest number among the three.
Examples:
Input: A = 2, B = 8, C = 1
Output: Largest number = 8
Input: A = 231, B = 4751, C = 75821
Output: Largest number = 75821
Similar questions