Skip to content

Commit 5f0eba1

Browse files
committed
2026년 03월 25일 15:02:51
1 parent 0bf52fa commit 5f0eba1

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

code_place/[3051] 별찍기1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
### 채점 결과
33
Accepted
44
### 제출 일자
5-
2026년 03월 25일 14:17:27
5+
2026년 03월 25일 15:02:51
66
### 성능 요약[추후 구현 예정]
77
- 메모리: N/A KB
88
- 시간: N/A ms
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#include <stdio.h>
2+
3+
int main(){
4+
for (int i = 0;i < 5;i++) {
5+
for (int j = 0;j < 5-i;j++){
6+
printf("*");
7+
}
8+
printf("\n");
9+
}
10+
for (int i = 1;i<5;i++){
11+
for (int j = 0;j < 1+i;j++){
12+
printf("*");
13+
}
14+
printf("\n");
15+
}
16+
17+
return 0;
18+
}

0 commit comments

Comments
 (0)