-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path23812.cpp
More file actions
47 lines (44 loc) · 944 Bytes
/
23812.cpp
File metadata and controls
47 lines (44 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// 23812. 골뱅이 찍기 - 돌아간 ㅍ
// 2022.03.07
// 출력
#include<iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 1; i <= 5; i++)
{
if (i % 2 == 0)
{
for (int j = 1; j <= n; j++)
{
for (int k = 0; k < 5 * n; k++)
{
cout << "@";
}
cout << endl;
}
}
else
{
for (int j = 1; j <= n; j++)
{
for (int k = 0; k < n; k++)
{
cout << "@";
}
for (int k = 0; k < 3 * n; k++)
{
cout << " ";
}
for (int k = 0; k < n; k++)
{
cout << "@";
}
cout << endl;
}
}
}
return 0;
}