[Python] 시험 성적

2024. 7. 17. 09:51코딩 테스트(Coding Test)/백준

# 정수 입력 받기
# 조건에 맞게 성적 출력하기
score = int(input())
if (90 <= score <= 100):
    print('A')
elif (80 <= score):
    print('B')
elif (70 <= score):
    print('C')
elif (60 <= score):
    print('D')
else :
    print('F')

 

 

개선한 코드

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")

'코딩 테스트(Coding Test) > 백준' 카테고리의 다른 글

[JAVA] 백준 1단계  (0) 2024.09.03
[Python] 윤년  (0) 2024.07.17
[Python] 두 수 비교하기  (0) 2024.07.17
[Python] 개  (0) 2024.07.17
[Python] 고양이  (0) 2024.07.17