입출력 사칙연산
10869번 문제
solution
정답
let input = require("fs").readFileSync("dev/stdin").toString().split(" ");
const num1 = Number(input[0]);
const num2 = Number(input[1]);
console.log(num1 + num2);
console.log(num1 - num2);
console.log(num1 * num2);
console.log(Math.floor(num1 / num2));
console.log(num1 % num2);
💠 math.floor() 함수는 주어진 숫자보다 작거나 같은 최대 정수 값을 반환, 즉 소수값이 존재할 때 소수점 이하를 버림한다.
❗math.cell(): 올림 할때 사용
math.around(): 반올림 할때 사용
참고: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math/floor
Author And Source
이 문제에 관하여(입출력 사칙연산), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sgw7546/10869번-사칙연산저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)