# [Algorithm/JS] 백준 1330번 두 수 비교하기
# Question
두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.
# Input
첫째 줄에 A와 B가 주어진다. A와 B는 공백 한 칸으로 구분되어져 있다.
# Output
첫째 줄에 다음 세 가지 중 하나를 출력한다.
- A가 B보다 큰 경우에는 '
>
'를 출력한다. - A가 B보다 작은 경우에는 '
<
'를 출력한다. - A와 B가 같은 경우에는 '
==
'를 출력한다.
# Example
# Input 1
472
385
1
2
2
# Output 1
<
1
# Input 2
10 2
1
# Output 2
>
1
# Input 3
5 5
1
# Output 3
==
1
# Solution
const fs = require('fs');
const [a, b] = fs.readFileSync('dev/stdin').toString().split(' ').map(Number);
function compare(a, b) {
if (a > b) return console.log('>');
if (a < b) return console.log('<');
if (a == b) return console.log('==');
}
compare(a, b);
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# Short Coding
const [a, b] = require('fs')
.readFileSync('./input/1330.txt')
.toString()
.split(' ')
.map(Number);
console.log(a > b ? '>' : a < b ? '<' : '==');
1
2
3
4
5
6
2
3
4
5
6
← 2588번 곱셈 9498번 시험 성적 →