백준 9498

Dreamer_01·2021년 1월 5일
0

알고리즘 풀이

목록 보기
3/34
score = int(input(''))
if score <= 100 and score >= 90:
    print('A')

elif score <= 89 and score >= 80:
    print('B')

elif score <= 79 and score >= 70:
    print('C')

elif score <= 69 and score >= 60:
    print('D')

else:
    print('F')

0개의 댓글

관련 채용 정보