This commit is contained in:
2024-03-26 11:15:25 +03:00
parent 4ecfebcd1b
commit 04d946e28c
38 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#include <stdio.h>
int main(void) {
int a = 1;
int b = 1;
for(a=1;a<9;a++) {
if (a % 2 == 1) {
while (b <= 8) {
printf("%s","* ");
b++;
}
printf("\n");
b = 0;
} else {
while(b <= 8) {
printf("%s", " *");
b++;
}
printf("\n");
b = 0;
}
}
return 0;
}