본문 바로가기
Programming/Python

[ Python ] 백준 9498번 시험성적 풀이

by 코뮤(commu) 2020. 12. 29.
728x90
반응형

www.acmicpc.net/problem/9498

 

9498번: 시험 성적

시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

 

 

 

문제는 위와 같습니다.

 

if 로 조건식만 잘 쓰면 됩니다.

부등호만 헷갈리지 않으면 풀리는 문제!

 

 

[ Code ]

 

 

 

 

score=int(input())
if (score>=90):
    print("A")
elif (score>=80 and score<90):
    print("B")
elif (score>=70 and score<80):
    print("C")
elif (score>=60 and score<70):
    print("D")
else: print("F")

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

728x90
반응형