From 25fe9af023a0af9fb19f80548fd2034d9cf23daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=5BJMF=5D=E2=80=9D?= Date: Thu, 21 Oct 2021 13:30:03 +0200 Subject: [PATCH] Update while.c --- TP3/while.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/TP3/while.c b/TP3/while.c index 6947b04..525c7bd 100644 --- a/TP3/while.c +++ b/TP3/while.c @@ -1,7 +1,6 @@ #include int main () { -<<<<<<< HEAD int max = 5; int i = 1; @@ -10,24 +9,11 @@ int main () { // faire tant que i est plus petit ou égal que 5 printf("%d \n",i); i = i + 1 ; // compteur, -======= - int max = 5; - - int i = 1; - - while ( i <= max) { - printf("%d \n",i); - i = i + 1 ; ->>>>>>> 474e609763e292af181a4f975d24c941252e1239 } /********************************/ /* valeur à la fin */ /********************************/ -<<<<<<< HEAD printf("après la boucle i vaut %d \n",i); // dernière valeur de i -======= - printf("après la boucle i vaut %d \n",i); ->>>>>>> 474e609763e292af181a4f975d24c941252e1239 return 1; }