-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmin_max_comparison.c
62 lines (57 loc) · 1.24 KB
/
min_max_comparison.c
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
#include<stdio.h>
int main()
{
int x,y,z,max,min;
printf("entre trois nomber:");
scanf("%i %i %i",&x,&y,&z);
if (x>=y && x>=z)
{
max=x;
if (y<z)
min=y;
else
min=z;
printf("le max est %i et le min est %i",max,min);
}
else
if (x<=y && z<=y)
{
max=y;
if (z<x)
min=z;
else
min=x;
printf("le max est %i et le min est %i",max,min);
}
else
{
if (z>=x && z>=y)
{
max=z;
if (x<y)
min=x;
else
min=y;
printf("le max est %i et le min est %i",max,min);
}
}
if (x=y)
{
printf("\n%i=%i",x,y);
printf("\nil y a une egalite");
}
else
{
if (x=z)
{
printf("\n%i=%i",x,z);
printf("\nil y a une egalite");
}
else
{
if (y=z)
printf("\n%i=%i",y,z);
printf("\nil y a une egalite");
}
}
}