From 358218d9e528803a95a71614aaa6696a5fc83a7c Mon Sep 17 00:00:00 2001 From: "flyingscorpio@pinebookpro" Date: Mon, 18 Oct 2021 09:51:25 +0200 Subject: [PATCH] =?UTF-8?q?Add=20compte=20=C3=A0=20rebours?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + programmation-c-cpp/tp2/compte-a-rebours.c | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 programmation-c-cpp/tp2/compte-a-rebours.c diff --git a/.gitignore b/.gitignore index 018b310..761036e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ convertisseur-devises minuscule-majuscule moyenne-somme majorite +compte-a-rebours diff --git a/programmation-c-cpp/tp2/compte-a-rebours.c b/programmation-c-cpp/tp2/compte-a-rebours.c new file mode 100644 index 0000000..33f204c --- /dev/null +++ b/programmation-c-cpp/tp2/compte-a-rebours.c @@ -0,0 +1,26 @@ + /* Compte à rebours */ + +#include +#include +#include + +void compte_a_rebours(int); + +int main() { + int nombre; + + printf("Donnez un nombre entier pour le compte à rebours : "); + scanf("%d", &nombre); + compte_a_rebours(nombre); + + return 0; +} + +void compte_a_rebours(int nombre) { + for (int i = nombre; i > 0; i--) { + printf("%d\n", i); + sleep(1); + } + printf("Boom !\n"); + +}