Add compte à rebours
This commit is contained in:
parent
8574a3e751
commit
358218d9e5
2 changed files with 27 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,3 +11,4 @@ convertisseur-devises
|
|||
minuscule-majuscule
|
||||
moyenne-somme
|
||||
majorite
|
||||
compte-a-rebours
|
||||
|
|
26
programmation-c-cpp/tp2/compte-a-rebours.c
Normal file
26
programmation-c-cpp/tp2/compte-a-rebours.c
Normal file
|
@ -0,0 +1,26 @@
|
|||
/* 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");
|
||||
|
||||
}
|
Loading…
Reference in a new issue