@@ -0,0 +1,27 @@
#include <stdio.h>
void afficherPion(int x, int y);
int main() {
int x = 1;
int y = 3;
afficherPion(x, y);
return 0;
}
void afficherPion(int x, int y) {
int i;
for (i = 0; i < y; i++) {
printf("\n");
for (i = 0; i < x; i++) {
printf(" ");
printf("O\n");
The note is not visible to the blocked user.