-
Notifications
You must be signed in to change notification settings - Fork 0
/
greatest of three nos
127 lines (103 loc) · 1.82 KB
/
greatest of three nos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#include <stdio.h>
int main()
{
int a,b,c,d;
printf("enter 1st no ,2nd no ,3rd no");
scanf("%d,%d,%d",&a,&b,&c);
d= a>c && a>b;
if(d)
printf("%d",&a);
else
{
d= b>a && b>c;
if(d)
printf("%d",b);
else
printf("%d",c);
}
return 0;
}
method 2
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers");
scanf("%d %d %d",&a,&b,&c);
if(a>b && a>c)
printf("%d",a);
else
{
if(b>c)
printf("%d",b);
else
printf("%d",c);
}
return 0;
}
method 2 (opt)
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers");
scanf("%d %d %d",&a,&b,&c);
if(a>b)
{
if(a>c)
printf("%d",a);
else
printf("%d",c);
}
else
{
if(b>c)
printf("%d",b);
else
printf("%d",c);
}
return 0;
}
method 2( more opt)
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers");
scanf("%d %d %d",&a,&b,&c);
if(a>b)
printf("%d",a>c?a:b);
else
printf("%d",b>c?b:c);
return 0;
}
method 2(ev more opt)
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers");
scanf("%d %d %d",&a,&b,&c);
a>b?printf("%d",a>c?a:b):printf("%d",b>c?b:c);
return 0;
}
method 2(ev ev more opt)
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers");
scanf("%d %d %d",&a,&b,&c);
printf("%d",a>b?a>c?a:c:b>c?b:c);
return 0;
}
method 2(ev ev more opt) - bracket version
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter three numbers");
scanf("%d %d %d",&a,&b,&c);
printf("%d",a>b?(a>c?a:c):(b>c?b:c));
return 0;
}