apl/APL1.1/5.Boucles-encore/source/Figures.c
unknown d9949b5cb0 a
2022-01-14 06:54:18 +01:00

66 lines
867 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
int choix,hauteur,compteur,largeur;
do {
printf("1) Triangle\n2) Carré\nq) Quitter\nVotre choix ? ");
scanf("%d", &choix);
if (choix == 1 ) {
printf("\nHauteur ? ");
scanf("%d", &hauteur);
for (compteur=0; compteur <= hauteur; compteur++) {
for (largeur=0;largeur!=compteur ;largeur++) {
printf("*");
}
printf("\n");
}
}
else {
if (choix == 2 ) {
printf("\nHauteur ? ");
scanf("%d", &hauteur);
for(compteur=0;compteur!=5;compteur++){
printf("*"); //boucles affichant la premiere
}
for(compteur=0;compteur!=(hauteur-2);compteur++) {
printf("* *\n");
}
for(compteur=0;compteur!=4;compteur++){
printf("*");
}
printf("\n");
}
else {
printf("Aurevoir\n");
break;
}
}
}while(1);
return 0;
}