23 lines
413 B
C
23 lines
413 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
void triangle(void){
|
|
|
|
}
|
|
|
|
int maid(void){
|
|
char choix;
|
|
char poubelle;
|
|
while (choix!='q'){
|
|
printf("t) Triangle\n");
|
|
printf("c) Carré\n");
|
|
printf("q) Quitter\n");
|
|
printf("Votre choix ? ");
|
|
choix = getchar();
|
|
for (poubelle=choix;poubelle=!'\xa'){
|
|
poubelle = getchar();
|
|
}
|
|
printf("\n");
|
|
if (choix=='t'){}
|
|
if (choix=='c'){}
|
|
}
|
|
} |