Link
문제
두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오.
입력 > 두 자연수 A와 B가 주어진다. (1 ≤ A, B ≤ 10,000)
출력 > 첫째 줄에 A+B, 둘째 줄에 A-B, 셋째 줄에 A*B, 넷째 줄에 A/B, 다섯째 줄에 A%B를 출력한다.
제출
const fs = require("fs");
const stdin = (
process.platform === "linux"
? fs.readFileSync("/dev/stdin").toString()
: `7 3`
).split(" ");
console.log(parseInt(stdin[0]) + parseInt(stdin[1]));
console.log(parseInt(stdin[0]) - parseInt(stdin[1]));
console.log(parseInt(stdin[0]) * parseInt(stdin[1]));
console.log(parseInt(parseInt(stdin[0]) / parseInt(stdin[1])));
console.log(parseInt(stdin[0]) % parseInt(stdin[1]));
개념
Comment
단순하게 한 줄로 계산식을 출력했을 때는 신경쓰이지 않았는데 여러 줄에 걸쳐 사칙 연산 결과를 출력하다 보니
비슷한 형식의 코드가 반복되는 것이 눈에 보였다. 어떻게 해결할 수 있을까?🤔
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 18108: 1998년생인 내가 태국에서는 2541년생?! (0) | 2022.02.07 |
---|---|
[백준] 10926: ??! (javascript) (0) | 2022.02.07 |
[백준] 1008: A/B (javascript) (0) | 2022.02.04 |
[백준] 10998: A x B (javascript) (0) | 2022.02.04 |
[백준] 1001: A-B (javascript) (0) | 2022.02.04 |