sugenius

[백준/python3] if문 본문

Baekjun

[백준/python3] if문

sugeniusk 2021. 3. 29. 13:56

단계별로 풀어보기 - 2. if문 

www.acmicpc.net/step/4

 

if문 단계

점이 어느 사분면에 있는지 알아내는 문제

www.acmicpc.net

 

- 1 단계 1330번 두 수 비교하기 

a,b = input().split()
a = int(a)
b = int(b)

if a<b :
    print('<')
elif a>b :
    print('>')
elif a==b :
    print('==')

- 2 단계 9498번 시험 성적

score = int(input())

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

- 3 단계 2753번 윤년

윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다.

year = int(input())

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

- 4 단계 14681번 사분면 고르기

x = int(input())
y = int(input())

if(x>0 and y>0):
    print(1)
elif(x>0 and y<0) :
    print(4)
elif(x<0 and y>0) :
    print(2)
elif(x<0 and y<0) :
    print(3)

- 5 단계 2884번 알람 시계

45분 일찍 알람 설정하기

H,M = input().split()
H = int(H)
M = int(M)
if M > 44 :
    print(H, M-45)
elif M <45 and H >0 :
    print(H-1,M+15)
else :
    print(23,M+15)

*규칙 찾기

'Baekjun' 카테고리의 다른 글

[백준/python3] 입출력과 사칙연산  (0) 2021.03.29