쏘ing

[Python] CLASS 1 - B4 본문

알고리즘/CLASS 1

[Python] CLASS 1 - B4

한민민 2022. 2. 8. 09:26

[백준 9498] 시험 성적

https://www.acmicpc.net/problem/9498

 

풀이

score = int(input())

if 90 <= score <= 100:
    print('A')
elif 80 <= score < 90:
    print('B')
elif 70 <= score <80:
    print('C')
elif 60 <= score < 70:
    print('D')
else:
    print('F')

 


[백준 2753] 윤년

https://www.acmicpc.net/problem/2753

 

풀이

year = int(input())

if (year % 4 == 0) and (year % 100 != 0 or year % 400 == 0):
    print(1)
else:
    print(0)

 


[백준 1330] 두 수 비교하기

https://www.acmicpc.net/problem/1330

 

풀이

A, B = map(int, input().split())

if A > B:
    print('>')
elif A < B:
    print('<')
else:
    print('==')

 


[백준 1008] A / B

https://www.acmicpc.net/problem/1008

 

풀이

A, B = map(int, input().split())

print(A / B)

'알고리즘 > CLASS 1' 카테고리의 다른 글

[Python] CLASS 1 - B2  (0) 2022.02.08
[Python] CLASS 1 - B3  (0) 2022.02.08
[Python] CLASS 1 - B5  (0) 2022.02.08
Comments