From a6ba11ea3bf119eb8877528dc152bb28aa5fb1f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=ED=99=8D=EA=B5=AC?= Date: Wed, 10 Apr 2024 21:36:49 +0900 Subject: [PATCH] =?UTF-8?q?2024-04-09=20=EC=A7=81=EA=B0=81=EC=82=BC?= =?UTF-8?q?=EA=B0=81=ED=98=95=20=EC=B6=9C=EB=A0=A5=ED=95=98=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- honggukang0623/README.md | 1 + ...34\353\240\245\355\225\230\352\270\260.js" | 27 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 "honggukang0623/\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/\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.js" diff --git a/honggukang0623/README.md b/honggukang0623/README.md index a31df9a..e12b00b 100644 --- a/honggukang0623/README.md +++ b/honggukang0623/README.md @@ -4,3 +4,4 @@ |:----:|:---------:|:----:|:-----:|:----:| | 1차시 | 2024.03.26 | 사칙연산 |[분수의덧셈]https://school.programmers.co.kr/learn/courses/30/lessons/120808 | [#5]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/5 | | 2차시 | 2024.03.29 | 배열 |[배열두배만들기]https://school.programmers.co.kr/learn/courses/30/lessons/120809 | [#7]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/7 | +| 3차시 | 2024.04.05 | 배열 |[중앙값구하기]https://school.programmers.co.kr/learn/courses/30/lessons/120811# | [#13]https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/13 | \ No newline at end of file diff --git "a/honggukang0623/\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/\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.js" "b/honggukang0623/\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/\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.js" new file mode 100644 index 0000000..0642861 --- /dev/null +++ "b/honggukang0623/\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/\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.js" @@ -0,0 +1,27 @@ +const readline = require('readline'); +const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout +}); + +let input = []; + +rl.on('line', function (line) { + input = line.split(' '); +}).on('close', function () { + const n = Number(input[0]); + + let line = 1; + while(line <= n){ + + let starStr = ""; + let cnt = 0; + while(cnt < line){ + starStr = starStr+"*" + cnt = cnt + 1; + } + + console.log(starStr) + line = line + 1; + } +}); \ No newline at end of file