Post

백준 9498번 python 풀이 - 시험 성적

문제 링크

9498번

해결책

1
2
3
4
5
6
7
8
9
10
11
12
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")

주석으로 달 설명

if 조건문

python document

크게 뭔가 설명할 게 없다.. 일단은 지금처럼 잘 쓰자.

This post is licensed under CC BY 4.0 by the author.