조건문으로 푸는 문제들만 모아놓은 카테고리에서 문제를 풀었다.
참고로 단계별로 풀어보기 링크는 다음과 같다.(https://www.acmicpc.net/step)
정답
# 1330 두 수 비교하기
A, B = map(int, input().split())
if A > B:
print('>')
elif A == B:
print('==')
else:
print('<')
# 9498 시험 성적
n = int(input())
if n >= 90 and n <= 100 :
print('A')
elif n >= 80 and n < 90 :
print('B')
elif n >= 70 and n < 80 :
print('C')
elif n >= 60 and n < 70 :
print('D')
else:
print('F')
# 2753 윤년
year = int(input())
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
print(1)
else:
print(0)
# 14681 사분면 고르기
x = int(input())
y = int(input())
if x > 0 and y > 0:
print(1)
elif x < 0 and y > 0:
print(2)
elif x < 0 and y < 0:
print(3)
else:
print(4)
'개발 공부 > 알고리즘 문제풀이' 카테고리의 다른 글
[백준] 2480. 주사위 세개 (0) | 2022.07.13 |
---|---|
[백준] 2525. 오븐 시계 (0) | 2022.07.13 |
[백준] 2884. 알람 시계 (0) | 2022.07.12 |
[백준] 2588. 곱셈 (0) | 2022.07.11 |
[백준] 10926 ??!, 18108 1998년생인 내가 태국에서는 2541년생?!, 10430 나머지 (0) | 2022.07.11 |