-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathB28.cpp
56 lines (52 loc) · 1.15 KB
/
B28.cpp
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
48
49
50
51
52
53
54
55
56
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
#include<math.h>
#include<map>
#include<numeric>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
int row = 2 * n;
int col = 2 * n;
vector<vector<char>> mat(row, vector<char>(col,'.'));
for (int i = 0; i < row; i++)
{
if ((i / 2) % 2 == 0)
{
for (int j = 0; j < col; j++)
{
if ((j / 2) % 2 == 0) // Fixed syntax error here
{
mat[i][j] = '#';
}
}
}
else{
for (int j = 0; j < col; j++)
{
if ((j / 2) % 2 == 1) // Fixed syntax error here
{
mat[i][j] = '#';
}
}
}
}
for(int i = 0;i<row; i++)
{
for(int j = 0 ; j<col ; j++)
{
cout<<mat[i][j];
}
cout<<endl;
}
}
return 0;
}