From c7117e9d2bc19095c860ff6536b8402f749060af Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Sun, 4 Jul 2021 20:18:19 +0800 Subject: [PATCH] =?UTF-8?q?B2005=20=E5=AD=97=E7=AC=A6=E4=B8=89=E8=A7=92?= =?UTF-8?q?=E5=BD=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R52395350 --- Luogu/problem/B2005/B2005.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Luogu/problem/B2005/B2005.cpp diff --git a/Luogu/problem/B2005/B2005.cpp b/Luogu/problem/B2005/B2005.cpp new file mode 100644 index 00000000..2472673e --- /dev/null +++ b/Luogu/problem/B2005/B2005.cpp @@ -0,0 +1,12 @@ +#include + +using namespace std; + +int main() { + char c; + cin >> c; + cout << " " << c << endl + << " " << c << c << c << endl + << c << c << c << c << c << endl; + return 0; +}