JPsiotp/sio2/sisr/20-python/exo2-2.py.old
root d59aa1571c nouveau fichier : sio2/sisr/20-python/exo2-1.py.old
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
2024-10-03 11:07:01 +02:00

35 lines
904 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python3
# Etape 1 : Demande à lutilisateur de saisir 5 chiffres.
# Etape 2 : Calcule le plus petit et le plus grand élément du tableau.
# Etape 3 : Calcule la moyenne des éléments du tableau.
# Etape 4 : Affiche le tableau et les résultats.
# Initialiser un tableau vide
tableau = []
# Saisir 5 chiffres en utilisant une boucle
for i in range(5):
chiffre = float(input(f"Entrez le chiffre {i+1} : "))
tableau.append(chiffre)
# Calculer le plus petit élément
plus_petit = min(tableau)
# Calculer le plus grand élément
plus_grand = max(tableau)
# 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}")