nouveau fichier : sio2/sisr/20-python/exo2-2.py.old nouveau fichier : sio2/sisr/20-python/exo2.py nouveau fichier : sio2/sisr/20-python/exo3.py
35 lines
791 B
Python
35 lines
791 B
Python
#!/usr/bin/python3
|
|
|
|
# Initialiser un tableau vide
|
|
tableau = []
|
|
|
|
# Saisir 5 chiffres
|
|
for i in range(5):
|
|
chiffre = float(input(f"Entrez le chiffre {i+1} : "))
|
|
tableau.append(chiffre)
|
|
|
|
# Trouver plus petit élément
|
|
plus_petit = tableau[0]
|
|
for chiffre in tableau:
|
|
if chiffre < plus_petit:
|
|
plus_petit = chiffre
|
|
|
|
# Trouver le plus grand élément
|
|
plus_grand = tableau[0]
|
|
for chiffre in tableau:
|
|
if chiffre > plus_grand:
|
|
plus_grand = chiffre
|
|
|
|
# Calculer la moyenne
|
|
moyenne = sum(tableau) / len(tableau)
|
|
|
|
# Afficher le tableau
|
|
print("Le tableau est :")
|
|
for chiffre in tableau:
|
|
print(chiffre)
|
|
|
|
# Afficher les résultats
|
|
print(f"Le plus petit élément est : {plus_petit}")
|
|
print(f"Le plus grand élément est : {plus_grand}")
|
|
print(f"La moyenne est : {moyenne}")
|