-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcours5.py
137 lines (73 loc) · 1.44 KB
/
cours5.py
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
#def nombremax (x, y):
# x = abs(x)
# y = abs(y)
# if (x > y):
# c = abs(x)
# elif (x < y):
# c = abs(y)
# else:
# c = y
### return c
#print (nombremax(-26, -32))
def nombremax(x, y):
if (x > y):
c = x
elif (x < y):
c = y
else:
c = y
return c
print(nombremax(92, 89))
def nombreabsolu (nbb, nba):
nbb = abs(nbb)
nba = abs (nba)
if nba > nbb:
resu = nba
elif nba < nbb:
resu = nbb
else:
resu = nbb
return resu
print (nombreabsolu(-29, -51))
#def yajeuxdete (x):
# if
# jo = true
#def yajeuxdete (x):
# J0 = x +4
# if x == (1916, 1940, 1944):
# resul = False
# return resul
#print (yajeuxdete(1968))
def yajeuxdete (t):
annee = t % 4
param = (1916, 1940, 1944)
if t < 1896:
res = False
elif annee == 0:
res = True
elif t in param:
res = False
else:
res = False
return res
print (yajeuxdete(1892))
def jeuxdhiver(x):
annee = x % 2
param = (1916, 1940, 1944)
if x < 1896:
res = False
elif annee == 0:
res = True
elif x in param:
res = False
else:
res = False
return res
print (jeuxdhiver(1994))
def yajeux(r):
if yajeuxdete(t) or jeuxdhiver(x):
res = True
else:
res = False
return res
print (yajeuxdete(2002))