프로그래밍/Baekjoon
(파이썬) 백준 알고리즘 9498번
J_Remind
2018. 12. 2. 16:02
문제
풀이 (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 |