move to repo.or.cz
[letusc.git] / ch2 / exercises1 / ex6.c
blobbf85ec4f9a46fdeaaa6297c63ccdcd48e34ff4d4
1 #include<stdio.h>
3 //int main()
4 //{
5 // int ram,shyam,ajay;
6 //
7 // printf("Enter the ages of ram, shyam and ajay: ");
8 // scanf("%d %d %d",&ram,&shyam,&ajay);
9 //
10 // if(ram<shyam && ram<ajay)
11 // printf("Ram is youngest\n");
12 // else if(shyam<ram && shyam<ajay)
13 // printf("Shyam is youngest\n");
14 // else if(ajay<ram && ajay<shyam)
15 // printf("Ajay is youngest\n");
17 // printf("Press any key to exit\n");
18 // getch();
19 // return;
21 //}