Skip to content

Commit 0733e47

Browse files
Merge pull request encrypted-def#79 from wogha95/pirateturtle1
Update 2442.cpp
2 parents dabf139 + 2090bf6 commit 0733e47

File tree

5 files changed

+13
-80
lines changed

5 files changed

+13
-80
lines changed

0x02/solutions/2438.cpp

Lines changed: 0 additions & 18 deletions
This file was deleted.

0x02/solutions/2439.cpp

Lines changed: 0 additions & 20 deletions
This file was deleted.

0x02/solutions/2440.cpp

Lines changed: 0 additions & 18 deletions
This file was deleted.

0x02/solutions/2441.cpp

Lines changed: 0 additions & 20 deletions
This file was deleted.

0x02/solutions/2442.cpp

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
// Authored by : BaaaaaaaaaaarkingDog
1+
// Authored by : wogha95
22
// Co-authored by : -
3-
// http://boj.kr/****************
3+
// http://boj.kr/00eea29b840146edac2da552f91c0f41
44
#include <bits/stdc++.h>
55
using namespace std;
66

7-
int main(void){
7+
int main(void) {
88
ios::sync_with_stdio(0);
99
cin.tie(0);
10-
10+
11+
int N;
12+
cin >> N;
13+
14+
for(int i = 1; i <= N; i++){
15+
for(int j = 1; j <= N - i; j++) cout << ' ';
16+
for(int j = 1; j <= 2 * i - 1; j++) cout << '*';
17+
// '*'의 오른쪽 공백은 출력하지 말아야 통과합니다.
18+
cout << "\n";
19+
}
1120
}

0 commit comments

Comments
 (0)