-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// [문제] 두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오. | ||
// [입력] 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10) | ||
|
||
// [정답] | ||
const fs = require('fs'); | ||
const input = fs.readFileSync('/dev/stdin').toString().split(' '); | ||
const A = parseInt(input[0]); | ||
const B = parseInt(input[1]); | ||
console.log(A*B); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// [문제] 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. | ||
// [입력] 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10) | ||
|
||
// [정답] | ||
const fs = require('fs'); | ||
const input = fs.readFileSync('/dev/stdin').toString().split(' '); | ||
const A = parseInt(input[0]); | ||
const B = parseInt(input[1]); | ||
console.log(A/B); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// [문제] 두 자연수 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 input = fs.readFileSync('/dev/stdin').toString().split(' '); | ||
const A = Number(input[0]); | ||
const B = Number(input[1]); | ||
console.log(A+B); | ||
console.log(A-B); | ||
console.log(A*B); | ||
console.log(Math.floor(A/B)); | ||
console.log(A%B); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// [문제] (A+B)%C는 ((A%C) + (B%C))%C 와 같을까? | ||
// (A×B)%C는 ((A%C) × (B%C))%C 와 같을까? | ||
// 세 수 A, B, C가 주어졌을 때, 위의 네 가지 값을 구하는 프로그램을 작성하시오. | ||
// [입력] 첫째 줄에 A, B, C가 순서대로 주어진다. (2 ≤ A, B, C ≤ 10000) | ||
// [출력] 첫째 줄에 (A+B)%C, 둘째 줄에 ((A%C) + (B%C))%C, 셋째 줄에 (A×B)%C, 넷째 줄에 ((A%C) × (B%C))%C를 출력한다. | ||
|
||
// [정답] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## 01_입출력과 사칙연산 | ||
|
||
| 번호 | 백준 번호 | 분류 | 풀이 날짜 | 문제 | 풀이 | | ||
| :--------: | :--------: | :---------------: | :--------: | :---------------------------: | :----------------------------: | | ||
| 1 | 2577 | N/A | 21-12-2021 | Hello World | [Javascript](01_2577.js) | | ||
| 2 | 10718 | 구현 | 21-12-2021 | We love kriii | [Javascript](02_10718.js) | | ||
| 3 | 10171 | 구현 | 21-12-2021 | 고양이 | [Javascript](03_10171.js) | | ||
| 4 | 10172 | 구현 | 21-12-2021 | 강아지 | [Javascript](04_10172.js) | | ||
| 5 | 1000 | 수학, 구현, 사칙연산 | 21-12-2021 | A+B | [Javascript](05_1000.js) | | ||
| 6 | 1001 | 수학, 구현, 사칙연산 | 21-12-2021 | A-B | [Javascript](06_1001.js) | | ||
| 7 | 10998 | 수학, 구현, 사칙연산 | 22-12-2021 | A*B | [Javascript](07_10998.js) | | ||
| 8 | 1008 | 수학, 구현, 사칙연산 | 22-12-2021 | A/B | [Javascript](08_1008.js) | | ||
| 9 | 10869 | 수학, 구현, 사칙연산 | 22-12-2021 | 사칙연산 | [Javascript](09_10869.js) | | ||
| 10 | 10430 | 수학, 구현, 사칙연산 | 22-12-2021 | 나머지 | [Javascript](10_10430.js) | |