修改文件结构。
This commit is contained in:
12
POP/03/Exercise02.c
Normal file
12
POP/03/Exercise02.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user