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"); + +}