parent
ab3480998c
commit
6b033604ef
@ -0,0 +1,19 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
using namespace std;
|
||||||
|
int main() {
|
||||||
|
int n;
|
||||||
|
cin >> n;
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
for (int j = 1; j <= n; j++) {
|
||||||
|
if (j == 1 || j == n)
|
||||||
|
cout << "|";
|
||||||
|
else if (i == (n + 1) / 2) {
|
||||||
|
cout << "-";
|
||||||
|
} else
|
||||||
|
cout << "a";
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in new issue