Exercice 1
Donner un algorithme en Python qui test si un entier n donné est pair ou impair.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
def test_parite(n): if n % 2 == 0: return "pair" else: return "impair" # Exemple d'utilisation n = int(input("Donner la valeur de n: ")) result = test_parite(n) print("Le nombre ", n, " est : ", result) """ output: Donner la valeur de n: 6 Le nombre 6 est : pair """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 1 : algorithme Python qui test la parité d'un entier”