This commit is contained in:
unlockable
2022-09-30 16:16:36 +08:00
parent 2f39d88778
commit aedf18a247
4 changed files with 58 additions and 0 deletions

12
03/Exercise02.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main() {
int a = 0, b = 0;
scanf("%d %d", &a, &b);
printf("%c%c%c%c%c\n", b, b, a, b, b);
printf("%c%c%c%c%c\n", b, a, b, a, b);
printf("%c%c%c%c%c\n", a, b, b, b, a);
printf("%c%c%c%c%c\n", b, a, b, a, b);
printf("%c%c%c%c%c\n", b, b, a, b, b);
return 0;
}