From b3480330b64ae023b9610dd3185a2c5bf170b62f Mon Sep 17 00:00:00 2001 From: moogin Date: Mon, 23 Sep 2024 15:00:19 +0200 Subject: [PATCH] ajout de boucle encore --- DEV1.1/boucle_encore.c | 56 ++++++++++++++++++++++++++++++++++++++++++ DEV1.1/boucles_suite.c | 4 +++ 2 files changed, 60 insertions(+) create mode 100644 DEV1.1/boucle_encore.c diff --git a/DEV1.1/boucle_encore.c b/DEV1.1/boucle_encore.c new file mode 100644 index 0000000..210ad00 --- /dev/null +++ b/DEV1.1/boucle_encore.c @@ -0,0 +1,56 @@ +#include +#include + +/*int main(void){ + int hauteur = 0; + int i; + int espace; + int etoile; + int n = 1; + int x = 0; + + printf("entrer la hauteur du sapin: "); + scanf("%d", &hauteur); + + for (i = 0; i < hauteur; i++){ + + for(espace = 0; espace < hauteur - 1 - i; espace++){ + printf(" "); + } + + + for(etoile = 0; etoile < n; etoile++){ + printf("*"); + } + n += 2; + printf("\n"); + } + +}*/ + +int main(void){ + char triangle; + int hauteur = 0; + int i; + int n = 0; + int etoile; + + printf("entrer votre choix: "); + scanf("%c", &triangle); + + if(triangle == 't'){ + printf("entrer la hauteur du sapin: "); + scanf("%d", &hauteur); + + for (i = 0; i < hauteur; i++){ + + for(etoile = 0; etoile < n; etoile++){ + printf("*"); + } + + n += 2; + printf("\n"); + } + } + +} \ No newline at end of file diff --git a/DEV1.1/boucles_suite.c b/DEV1.1/boucles_suite.c index 5d89c6d..7c83e1e 100644 --- a/DEV1.1/boucles_suite.c +++ b/DEV1.1/boucles_suite.c @@ -34,3 +34,7 @@ int main (void){ } } }*/ + +int main(void){ + +} \ No newline at end of file