-
9498_Python // 시험 성적IT_Baekjoon 단계별로 풀어보기/if문 2020. 1. 3. 03:10
Python
a = int(input()) if(a>=90 and a<=100): print("A") elif(a>=80 and a<=89) : print("B") elif(a>=70 and a<=79) : print("C") elif(a>=60 and a<=69) : print("D") else : print("F")
===
'IT_Baekjoon 단계별로 풀어보기 > if문' 카테고리의 다른 글
14681_Python // 사분면 고르기 (0) 2020.03.20 2884_Python // 알람 시계 (0) 2020.01.03 2753_Python // 윤년 (0) 2020.01.03 1330_Python // 두 수 비교하기 (0) 2020.01.03