1 parent 0bf52fa commit 5f0eba1Copy full SHA for 5f0eba1
2 files changed
code_place/[3051] 별찍기1/README.md
@@ -2,7 +2,7 @@
2
### 채점 결과
3
Accepted
4
### 제출 일자
5
-2026년 03월 25일 14:17:27
+2026년 03월 25일 15:02:51
6
### 성능 요약[추후 구현 예정]
7
- 메모리: N/A KB
8
- 시간: N/A ms
code_place/[3051] 별찍기1/solution.c
@@ -0,0 +1,18 @@
1
+#include <stdio.h>
+
+int main(){
+ for (int i = 0;i < 5;i++) {
+ for (int j = 0;j < 5-i;j++){
+ printf("*");
+ }
+ printf("\n");
9
10
+ for (int i = 1;i<5;i++){
11
+ for (int j = 0;j < 1+i;j++){
12
13
14
15
16
+
17
+ return 0;
18
+}
0 commit comments