https://www.acmicpc.net/problem/9498
[정답]
score=int(input())
if score>=90 and score<=100:
print('A')
elif score>=80 and score<90:
print('B')
elif score>=70 and score<80:
print('C')
elif score>=60 and score<70:
print('D')
else:
print('F')
'알고리즘 공부 > 백준 > Python3' 카테고리의 다른 글
[백준 파이썬] #2562: 최댓값 (0) | 2020.11.04 |
---|---|
[백준 파이썬] #14681: 사분면 고르기 (0) | 2020.11.03 |
[백준 파이썬] #2753: 윤년 (0) | 2020.11.03 |
[백준 파이썬] #10818: 최소, 최대 (0) | 2020.11.03 |
[백준 파이썬] #2884: 알람 시계 (0) | 2020.11.03 |