luc025.c¶
Problem Statement
Write a program to find the greates of the three numbers entered through the keyboard. Use conditional operators.
Metadata¶
| Property | Detail |
|---|---|
| Author | Amit Dutta (amitdutta4255@gmail.com) |
| License | MIT |
Actions¶
💡 You can print or save this file by opening Raw and using your browser.
Source Code¶
#include <stdio.h>
int main()
{
double num1, num2, num3, max;
printf("Enter three number : ");
scanf("%lf %lf %lf", &num1, &num2, &num3);
printf("\nGreatest of the three number '%g', '%g' and '%g' is : '%g'", num1, num2, num3,
(num1 > num2 && num1 > num3) ? num1 : ((num2 > num1 && num2 > num3) ? num2 : num3));
return 0;
}