Computer Science, asked by kartikeyakumar92, 1 year ago

Write a program in print the largest of three number

Answers

Answered by tanu3472
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 sourya1794
26

Explanation:

here is ur answer.....

Attachments:
Similar questions