티스토리 뷰

알고리즘/백준 문제풀이

백준 nodejs 8393번: 합

YG - 96년생 , 강아지 있음, 개발자 희망 2021. 8. 20. 06:00

const fs = require("fs");

const filePath = process.platform === "linux" ? "./input.txt" : "/dev/stdin"; //제 개발환경은 리눅스이기에 input.txt를 앞에 두었습니다.

// const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; // 실제 백준사이트에 제출할 때는 위에 filePath를 삭제하고 이 부분을 입력하면 됩니다.

let input = fs.readFileSync(filePath).toString();

input = +input;

solution(input);

function solution(A) {
  let sum = 0; // sum 이 for 문 안에 들어가 있으면 console.log를 하지 못합니다. for문 밖에 있어야함
  for (i = 1; i <= A; i++) {
    sum = i + sum; //1번쨰 :  0 + 1 = 1           ##  2번쨰 : 3 = 2+1 ...>>
  }
  console.log(sum); // 더하기가 된 sum..
}

 

'알고리즘 > 백준 문제풀이' 카테고리의 다른 글

백준 nodejs 2742번: 기찍 N  (0) 2021.08.20
백준 nodejs 2741번: N 찍기  (0) 2021.08.20
백준 nodejs 10950번: A+B - 3  (0) 2021.08.20
백준 nodejs 2884번: 알람 시계  (0) 2021.08.19
백준 nodejs 2753번: 윤년  (0) 2021.08.19
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함