목록전체 글 (298)
\(@^0^@)/
🐱👓 1. 문제 : 2577 https://www.acmicpc.net/problem/2577 🔥 2.1 split을 이용한 코드 const fs = require('fs'); const file = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; // Num으로 바꿔야 공백없이 제대로 비교 가능. let input = fs.readFileSync(file).toString().split('\n').map(n => Number(n)); let first = input[0]; let sec = input[1]; let third = input[2]; let multi = String(first * sec * third); // 간결하게 let ..
※ 참고 : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference
🐱👓 1. 문제 : 1110 https://www.acmicpc.net/problem/1110 🔥 2. 코드와 풀이 const fs = require('fs'); const file = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(file).toString(); let plus = 0 let count = 0; let num = Number(input); let trueOrfalse = true; // 2+6 = 8 // 1. 6+8 = 14 // 2. 8+4 = 12 // 3. 4+2 = 6 // 4. 2+6 = 8 while(trueOrfalse) { // 예시 input 26 // (..