728x90
반응형
문제는 위와 같습니다.
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
반응형
'Archive > Develop' 카테고리의 다른 글
[ Python ] 백준 11653번 소인수분해 풀이 (0) | 2020.12.29 |
---|---|
[ Python ] 백준 10817번 세 수 풀이 (0) | 2020.12.29 |
[ Python ] 백준 2935번 소음 풀이 (0) | 2020.12.29 |
[ Python ] 백준 2675번 문자열 반복 풀이 (0) | 2020.12.28 |
[ Python ] 백준 5355번 화성 수학 풀이 (0) | 2020.12.28 |