sm 기술 블로그

13. 2588(곱셈) 본문

문제/백준_자바스크립트

13. 2588(곱셈)

sm_hope 2022. 5. 16. 10:47
let fs = require('fs');
let input = fs.readFileSync('/dev/stdin').toString().split('\n');

A = input[0];
B = input[1];

console.log(A * (B%10));
console.log(A * (B%100 - B%10)/10);
console.log(A * (B - B%100)/100);
console.log(A*B);

 

split에 쪼개고 싶은 단위 (\n이면 엔터로, ' '면 스페이스바로)

 

'문제 > 백준_자바스크립트' 카테고리의 다른 글

15. 9498(시험 성적)  (0) 2022.05.16
14. 1330(두 수 비교하기)  (0) 2022.05.16
12. 10430(나머지)  (0) 2022.05.16
11. 18108(1998년생인 내가 태국에서는 2541년생?!)  (0) 2022.05.16
10. 10926(??!)  (0) 2022.05.16
Comments