Algorithm
- ํฉ -
๋ฌธ์
n์ด ์ฃผ์ด์ก์ ๋, 1๋ถํฐ n๊น์ง ํฉ์ ๊ตฌํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค.
์ ์ถ๋ ฅ ์์
๋ฌธ์ ํ๊ธฐ
let fs = require("fs");
let input = fs.readFileSync("/dev/stdin").toString().split(" ");
let a = parseInt(input[0]);
function solution () {
let result = 0;
for(let i = 1; i <= a; i++) {
result += i;
}
console.log(result);
}
solution();
๋ฐ์ํ
'๊ฐ์ธ๊ณต๋ถ > Algorithm' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค][Node.js] 9012๋ฒ : ๊ดํธ (0) | 2021.12.16 |
---|---|
[๋ฐฑ์ค][Node.js] 8958๋ฒ : OXํด์ฆ (0) | 2021.12.15 |
[๋ฐฑ์ค][Node.js] 7785๋ฒ : ํ์ฌ์ ์๋ ์ฌ๋ (0) | 2021.12.13 |
[๋ฐฑ์ค][Node.js] 7576๋ฒ : ํ ๋งํ (0) | 2021.12.12 |
[๋ฐฑ์ค][Node.js] 7572๋ฒ : ๊ฐ์ง(ๅนฒๆฏ) (0) | 2021.12.11 |
๋๊ธ