반응형
score = int(input())
if score >= 90:
print('A')
elif score >= 80:
print('B')
elif score >= 70:
print('C')
elif score >= 60:
print('D')
else:
print('F')
// 결과
100
A
82
B
32
F
반응형
'Algorithm > baekjoon' 카테고리의 다른 글
[백준 14681 파이썬/python] 사분면 고르기 (0) | 2023.02.28 |
---|---|
[백준 2753 파이썬/python] 윤년 (0) | 2023.02.28 |
[백준 1330 파이썬/python] 두 수 비교하기 (0) | 2023.02.27 |
[백준 10172 파이썬/python] 개 (0) | 2023.02.27 |
[백준 10171 파이썬/python] 고양이 (0) | 2023.02.27 |