# [Algorithm/JS] 백준 9498번 시험 성적

🔗 문제 바로가기 (opens new window)

# Question

시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.

# Input

첫째 줄에 시험 점수가 주어진다. 시험 점수는 0보다 크거나 같고, 100보다 작거나 같은 정수이다.

# Output

시험 성적을 출력한다.

# Example

# Input

100
1

# Output

A
1

# Solution

const fs = require('fs');
const input = fs.readFileSync('dev/stdin');
const score = Number(input);
if (score >= 90) {
  console.log('A');
} else if (score >= 80) {
  console.log('B');
} else if (score >= 70) {
  console.log('C');
} else if (score >= 60) {
  console.log('D');
} else {
  console.log('F');
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Last Updated: 2022. 6. 5. 오후 3:42:39