Network disconnected
Description
주어진 초기 코드는 score
에 저장된 점수에 따라 성적을 출력하는 코드입니다.
성적은 다음과 같이 매겨집니다.
90점 이상 - A
80점 이상 90점 미만 - B
70점 이상 80점 미만 - C
60점 이상 70점 미만 - D
60점 미만 - F
성적이 올바르게 출력되도록 빈칸을 채워보세요.
제한사항
- 0 ≤
score
≤ 100
입출력 예
입력 #1
65
출력 #1
D
입력 #2
98
출력 #2
A
입출력 예 설명
입출력 예 #1
score
에 입력된 값이 60이상 70미만 이기 때문에 D를 출력합니다.
입출력 예 #2
score
에 입력된 값이 90이상 이기 때문에 A를 출력합니다.
Question type: Fill in the blank
- You need to fill in the blank with the appropriate code.
- You cannot modify the given code.
- An error message will appear in the result if you leave the blank empty.
1
2
3
4
5
6
7
8
9
10
11
12
score = int(input())
score >= 90:
print()
elif :
print("B")
elif :
print("C")
:
print()
:
print("F")
Result
Stop
Result of [Run Test] or [Submit] will be displayed here