This commit is contained in:
ludo
2021-09-29 11:15:21 +02:00
parent 22508e2755
commit 1b80141dc4
5 changed files with 64 additions and 0 deletions

18
sio2/sisr/20-python/Exercice2 Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/python3
tableau = []
for i in range(3)
entier = int(input('chiffre : '))
tableau.append(entier)
moy= sum(tableau)/len(tableau)
def maximum(tableau):
vmax = tableau[0]
def minimum(tableau):
vmax = tableau[0]