efrei/programmation-c-cpp/tp2/compte-a-rebours.c

26 lines
440 B
C

/* Compte à rebours */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
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");
}