From 21c49da69a32791b0dc80d85ff6539dfaba84f0e Mon Sep 17 00:00:00 2001 From: Nadou Emmanuella LAWSON-LARTEGO Date: Tue, 3 Dec 2024 18:54:51 +0100 Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?= =?UTF-8?q?"/"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Fonction2.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Fonction2.py diff --git a/Fonction2.py b/Fonction2.py new file mode 100644 index 0000000..83335fb --- /dev/null +++ b/Fonction2.py @@ -0,0 +1,15 @@ +def Function2(x): + """ + Calcule la somme des entiers de 1 à x inclus. + """ + valeur = 0 # Initialisation + while x > 0: # Boucle qui s'exécute x fois + valeur += x # Ajout de x à valeur + x -= 1 # Décrémentation de x + return valeur + + +# Test de la fonction +x = 4 +resultat = Function2(x) +print(f"Somme des entiers de 1 à {x} : {resultat}")