Pages

Thursday, 8 January 2015

C Program To Find Maximum Out of Three Numbers

/* Addition of two number in c */

For any query regarding c/c++ feel free to contact me on khimanichirag@gmail.com or comment below. I try my best to solve it.

 #include<stdio.h>  
 #include<conio.h>  
 void main()  
 {  
   clrscr();  
   printf("Enter the value of first number: ");  
   scanf("%d",&n1);  
   printf("Enter the value of second number: ");  
   scanf("%d",&n2);  
   printf("Enter the value of third number: ");  
   scanf("%d",&n3);  
   if(n1>n2 && n1>n3)  
   {  
     printf("%d is maximum",n1);  
   }  
   else  
   {  
     if(n2>n3)  
     {  
       printf("%d is maximum",n2);  
     }  
     else  
     {  
       printf("%d is maximum",n3)  
     }  
   }  
   getch();  
 }  

No comments:

Post a Comment