Write a program in print the largest of three number
Answers
Answered by
0
Explanation:
Example #1. #include <stdio.h> double n1, n2, n3; printf("Enter three different numbers: "); scanf("%lf %lf %lf", &n1, &n2, &n3); if( n1>=n2 && n1>=n3 ) printf("%.2f is the largest number.", n1); if( n2>=n1 && n2>=n3 ) printf("%.2f is the largest number.", n2);
Answered by
26
Explanation:
here is ur answer.....
Attachments:
Similar questions