Skip to content

Commit

Permalink
#17 22.08.11 > 3 > 곱셈
Browse files Browse the repository at this point in the history
  • Loading branch information
beurmuz committed Aug 11, 2022
1 parent 03eca65 commit 497ce1e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/bj/bronze/3/2588.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
'use strict';

const inputs = require('fs').readFileSync('/dev/stdin').toString().trim().split('\n');
const n1 = inputs[0].split('');
const n2 = inputs[1].split('');

console.log(+inputs[0]*n2[2]);
console.log(+inputs[0]*n2[1]);
console.log(+inputs[0]*n2[0]);
console.log(+inputs[0] * +inputs[1]);
1 change: 1 addition & 0 deletions src/bj/bronze/3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
||문제번호|문제명|응시 날짜|채점 결과|링크|
|:-:|:--:|:--:|:---:|:---:|:-|
|1|1085|[직사각형에서 탈출](./1085.js)|22.07.07|O|[해설](https://velog.io/@muz/%EB%B0%B1%EC%A4%80node.js-1085%EB%B2%88-%EC%A7%81%EC%82%AC%EA%B0%81%ED%98%95%EC%97%90%EC%84%9C-%ED%83%88%EC%B6%9C-Math.min)|
|2|2588|[곱셈](./2588.js)|22.08.11|O||

0 comments on commit 497ce1e

Please sign in to comment.