0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-24 03:08:49 +00:00

B2005 字符三角形

R52395350
This commit is contained in:
Baoshuo Ren 2021-07-04 20:18:19 +08:00 committed by Baoshuo Ren
parent b3dd64d10e
commit c7117e9d2b
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,12 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
cin >> c;
cout << " " << c << endl
<< " " << c << c << c << endl
<< c << c << c << c << c << endl;
return 0;
}