문제
풀이 (Python)
1 2 3 4 5 6 7 8 9 10 11 12 | 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') | cs |
문제 출처
'프로그래밍 > Baekjoon' 카테고리의 다른 글
(파이썬) 백준 알고리즘 10871번 (0) | 2018.12.02 |
---|---|
(파이썬) 백준 알고리즘 10817번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 11721번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 11720번 (0) | 2018.12.02 |
(파이썬) 백준 알고리즘 8393번 (0) | 2018.12.02 |