-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01_issue1_k22005.c
More file actions
22 lines (20 loc) · 811 Bytes
/
Copy path01_issue1_k22005.c
File metadata and controls
22 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// 01_issue1_k22005.c
//
//
// Created by k22005kk on 2022/04/14.
//
#include <stdio.h>
int main(int argc, const char * argv[]) {
printf(" # # ####### # # #######\n");
printf(" # # # # # # #\n");
printf(" ####### ####### # # # #\n");
printf(" # # # # # # #\n");
printf("# # ####### ####### ####### #######\n\n");
printf(" # # # ####### ####### # ###### \n");
printf(" # # # # # # # # # #\n");
printf(" # # # # # ####### # # #\n");
printf(" # # # # # # # # # #\n");
printf(" ####### ####### # # ####### ###### \n");
return 0;
}