Corrections exos
This commit is contained in:
parent
5b66e31981
commit
c1e001cd10
@ -32,4 +32,3 @@ int main(int argc, char * argv[]) {
|
|||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,16 +25,21 @@ int showMenu() {
|
|||||||
puts("Que voulez vous dessiner ?");
|
puts("Que voulez vous dessiner ?");
|
||||||
puts("1. Carré");
|
puts("1. Carré");
|
||||||
puts("2. Triangle");
|
puts("2. Triangle");
|
||||||
|
puts("3. Quitter");
|
||||||
scanf("%d", &choice);
|
scanf("%d", &choice);
|
||||||
|
|
||||||
return choice;
|
return choice;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char * argv[]) {
|
int main(int argc, char * argv[]) {
|
||||||
int choice = showMenu();
|
int choice;
|
||||||
|
do {
|
||||||
|
choice = showMenu();
|
||||||
if (choice == 1) drawSquare();
|
if (choice == 1) drawSquare();
|
||||||
else drawTriangle();
|
else if (choice == 2) drawTriangle();
|
||||||
|
else if (choice != 3) puts("Choix incorrect.");
|
||||||
|
} while (choice != 3);
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user