From d0bd6906d6c5fe8a1e2dbc47cef7b6885aa3d315 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 19 Nov 2024 09:22:04 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EC=8A=88=20#328=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=86=94=EB=A3=A8=EC=85=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...234\353\240\245\355\225\230\352\270\260.cpp" | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 "Programmers/\354\247\201\352\260\201\354\202\274\352\260\201\355\230\225_\354\266\234\353\240\245\355\225\230\352\270\260.cpp" diff --git "a/Programmers/\354\247\201\352\260\201\354\202\274\352\260\201\355\230\225_\354\266\234\353\240\245\355\225\230\352\270\260.cpp" "b/Programmers/\354\247\201\352\260\201\354\202\274\352\260\201\355\230\225_\354\266\234\353\240\245\355\225\230\352\270\260.cpp" new file mode 100644 index 0000000..8a4d18a --- /dev/null +++ "b/Programmers/\354\247\201\352\260\201\354\202\274\352\260\201\355\230\225_\354\266\234\353\240\245\355\225\230\352\270\260.cpp" @@ -0,0 +1,17 @@ +#include + +using namespace std; + +int main(void) { + int n; + cin >> n; + + for (int i = 0; i < n; i++) { + for (int j = 0; j <= i; j++) { + cout << "*"; + } + cout << "\n"; + } + + return 0; +} \ No newline at end of file