Bonjour,
pour mon projet d'ISN pour le bac j'ai dû créer un petit programme de calcul mental. Apres plusieurs heures de recherche, je vous demande de l'aide afin de récupérer un score. Il me faut juste trouver comment obtenir un score final car par la suite je l'affecterai dans un fichier texte. Le but serait d'obtenir 1 point pour une addition, 2 points pour une soustraction, 3 points pour une multiplication et 4 points pour une division. A la fin d'une partie, il faudrait récupérer le score final et les classer selon le niveau choisi.
Merci beaucoup pour votre future aide.
voici le programme :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
 
from random import*
###FONCTIONS###
 
 
def Recrue ():
	a = randint(0,10)
	b = randint(0,10)
	mode = int(input("choisis maintenant un mode :\n Entrainement = 1\n Challenge = 2\n"))
	if mode == 1 :
		while j == 0 :
 
			choix = int(input(" que voulez vous faire ? \n-> Addition = 1 \n-> Soustraction = 2 \n-> Multiplication = 3 \n-> Division = 4 \n-> Changer les opérandes = 5"
					"\n-> Quitter le mode entrainement = 6 \nPS : RAS\n"))
			if choix == 1 :
				addition (a,b)
			elif choix == 2 :
				while a < b :
					a = randint(0,10)
					b = randint(0,10)
				soustraction (a,b)
			elif choix == 3 :
				multiplication (a,b)
			elif choix == 4 :
				while a < b :
					a = randint(0,10)
					b = randint(0,10)
				division (a,b)
			elif choix == 5 :
				a = randint(0,10)
				b = randint(0,10)
			elif choix == 6 :
				break
 
	elif mode == 2 :
		L = int(input("Combien de calculs voulez vous faire ?"))
		print("Bonne chance")
		k = 0
 
		while k < L :
			k = k + 1
			choix = randint(1,4)
			if choix == 1 :
				a = randint(0,10)
				b = randint(0,10)
				addition (a,b)
			elif choix == 2 :
				a = randint(0,10)
				b = randint(0,10)
				while a < b :
					a = randint(0,10)
					b = randint(0,10)
				soustraction (a,b)
 
			elif choix == 3 :
				a = randint(0,10)
				b = randint(0,10)
				multiplication (a,b)
			elif choix == 4 :
				a = randint(0,10)
				b = randint(0,10)
				while a < b :
					a = randint(0,10)
					b = randint(0,10)
				division (a,b)
 
 
 
def Commando ():
	a = randint(-20,20)
	b = randint(-20,20)
	mode = int(input("choisis maintenant un mode :\n Entrainement = 1\n Challenge = 2\n"))
	if mode == 1 :
		while j == 0 :
 
			choix = int(input(" que voulez vous faire ? \n-> Addition = 1 \n-> Soustraction = 2 \n-> Multiplication = 3 \n-> Division = 4 \n-> Changer les opérandes = 5"
					"\n-> Quitter le mode entrainement = 6 \nPS : RAS\n"))
			if choix == 1 :
				addition (a,b)
			elif choix == 2 :
				soustraction (a,b)
			elif choix == 3 :
				multiplication (a,b)
			elif choix == 4 :
				division (a,b)
			elif choix == 5 :
				a = randint(-20,20)
				b = randint(-20,20)
			elif choix == 6 :
				break
			else :
				print("Tu dois choisir un nombre entre 1 et 6")
 
	elif mode == 2 :
		L = int(input("Combien de calculs voulez vous faire ?"))
		print("Bonne chance")
		k = 0
		while k < L :
			k = k + 1
			choix = randint(1,4)
			if choix == 1 :
				a = randint(-20,20)
				b = randint(-20,20)
				addition (a,b)
			elif choix == 2 :
				a = randint(-20,20)
				b = randint(-20,20)
				soustraction (a,b)
			elif choix == 3 :
				a = randint(-20,20)
				b = randint(-20,20)
				multiplication (a,b)
			elif choix == 4 :
				a = randint(-20,20)
				b = randint(-20,20)
				division (a,b)
 
 
 
 
 
def Légende ():
	a = round(uniform(-100,100),2)
	b = round(uniform(-100,100),2)
	mode = int(input("choisis maintenant un mode :\n Entrainement = 1\n Challenge = 2\n"))
	if mode == 1 :
		while j == 0 :
 
			choix = int(input(" que voulez vous faire ? \n-> Addition = 1 \n-> Soustraction = 2 \n-> Multiplication = 3 \n-> Division = 4 \n-> Changer les opérandes = 5"
							"\n-> Quitter le mode entrainement = 6 \nPS : RAS\n"))
			if choix == 1 :
				addition (a,b)
			elif choix == 2 :
				soustraction (a,b)
			elif choix == 3 :
				choixmulti = randint(1,2)
				if choixmulti == 1 :
					a = randint(-100,100)
					b = randint(-100,100)
					multiplication (a,b)
				elif choixmulti == 2 :
					a = round(uniform(-10,10),2)
					b = round(uniform(-10,10),2)  
			elif choix == 4 :
				choixdiv = randint(1,2)
				if choixdiv == 1 :
					a = randint(-100,100)
					b = randint(-100,100)
					division (a,b)
				elif choixdiv == 2 :
					a = round(uniform(-10,10),2)
					b = round(uniform(-10,10),2)
					division (a,b)
			elif choix == 5 :
				a = round(uniform(-100,100),2)
				b = round(uniform(-100,100),2)
			elif choix == 6 :
				break
			else :
				print("Tu dois choisir un nombre entre 1 et 6")
 
	elif mode == 2 :
		L = int(input("Combien de calculs voulez vous faire ?"))
		print("Bonne chance")
		k = 0
		while k < L :
			k = k + 1
			choix = randint(1,4)
			if choix == 1 :
				a = round(uniform(-100,100),2)
				b = round(uniform(-100,100),2)
				addition (a,b)
			elif choix == 2 :
				a = round(uniform(-100,100),2)
				b = round(uniform(-100,100),2)
				soustraction (a,b)
			elif choix == 3 :
				choixmulti = randint(1,2)
				if choixmulti == 1 :
					a = randint(-100,100)
					b = randint(-100,100)
					multiplication (a,b)
				elif choixmulti == 2 :
					a = round(uniform(-10,10),2)
					b = round(uniform(-10,10),2)  
			elif choix == 4 :
				choixdiv = randint(1,2)
				if choixdiv == 1 :
					a = randint(-100,100)
					b = randint(-100,100)
					division (a,b)
				elif choixdiv == 2 :
					a = round(uniform(-10,10),2)
					b = round(uniform(-10,10),2)
					division (a,b)
 
		print("Votre score est de",a,"point(s)")
 
 
 
 
def addition (a,b):
 
 
	#a = randint(0,10)
	#b = randint(0,10)
	#print (a)
	#print (b)
	#print (c)
 
	print ("Voici l'addition :", a, "+", b)
	d = float(input ("quel est le résultat ?\n" ))
	if d == a + b :
		juste()
 
 
		print ("bravo vous avez réussi !")
 
 
 
	else :
		print ("perdu, La bonne réponse était :", round(a + b,2))
 
 
 
 
def soustraction (a,b):
	#a = randint(0,10)
	#b = randint(0,10)
	#print (a)
	#print (b)
	#print (c)
	#if a > b :
 
	print ("Voici la soustraction :", a, "-", b)
	d = float(input ("quel est le résultat ?\n" ))
	if d == a - b :
		juste()
 
 
		print ("bravo vous avez réussi !")
	else :  
		print ("perdu, La bonne réponse était :", round(a - b,2))
	#else :
		#soustraction (a,b)
 
def multiplication (a,b):
	#a = randint(0,10)
	#b = randint(0,10)
	#print (a)
	#print (b)
	#print (c)
 
	print ("Voici la multiplication :", a, "*", b)
	d = float(input ("quel est le résultat ?\n" ))
	if d == a * b :
		juste()
 
		print ("bravo vous avez réussi !")
	else :
		print ("perdu, La bonne réponse était :", round(a * b,2))
 
 
def division (a,b):
	#a > b
	#a = randint(0,10)
	#b = randint(1,10)
	#print (a)
	#print (b)
	#print (c)
 
	if b != 0 :
 
		print ("Voici la division :", a, "/", b)
		d = int(input ("quel est le quotient ?\n" ))
		if d == int(a / b) :
			e = round(float(input ("quel est le reste ?\n")),2)
			if e == a % b :
 
 
				print ("bravo vous avez réussi !")
			else :
				print ("perdu, La bonne réponse était :", round(a % b,2))        
		else :
			print ("perdu, La bonne réponse était :", int(a / b))
 
	else :
		division ()
 
 
 
 
 
 
 
 
 
 
 
 
###MAIN###
prenom=input ("Quel est votre prénom ?")
print("Bonne chance")
 
 
 
 
i = 1 or 2 or 3 or 4
j = 0
f = True
while f == True :
	niv = 0
	while niv != i :
			niv = int(input("Choisissez votre niveau " +prenom+ ":\n Recrue : 1\n Commando : 2\n Légende : 3\n"))
 
			if niv == 1 :
				#a = randint(0,10)
				#b = randint(0,10)
				Recrue ()
 
					#a = randint(0,10)
					#b = randint(0,10)
					#mode ()
			elif niv == 2 :
				#niv = Commando ()
				Commando ()
 
				#a = randint(0,10)
				#b = randint(0,10)
			elif niv == 3 :
				#niv = Légende ()
				Légende ()
 
			else :
				print("C'etait pourtant pas très compliqué de choisir un nombre entre 1 et 3... tu peux essayer de nouveau ;)")
			break
 
 
	continuer = int(input("Que voulez vous faire ? \n->Choisir un niveau = 1 \n->Arrêter = 2\n"))
	if continuer == 2 :
			f = False
	else :
		f = True