백준 9498 (파이썬)

김덕현·2021년 5월 27일
1

BAEKJOON

목록 보기
13/62

1.문제

https://www.acmicpc.net/problem/9498

2.코드

score = int(input())
if score >= 90 and score <= 100 : print("A")
elif score >= 80 and score <= 89 : print("B")
elif score >= 70 and score <= 79 : print("C")
elif score >= 60 and score <= 69 : print("D")
else : print("F")

3.코드해설

profile
BAEKJOON STUDYING

0개의 댓글