본문 바로가기
백준 문제풀이

if 문

by winston1214 2020. 7. 15.
반응형

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

 

1330번: 두 수 비교하기

두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.

www.acmicpc.net

a,b = map(int,input().split())
if a>b:
    print('>')
elif a<b:
    print('<')
else:
    print('==')

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

 

9498번: 시험 성적

시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

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

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

 

2753번: 윤년

연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서

www.acmicpc.net

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

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

 

14681번: 사분면 고르기

문제 흔한 수학 문제 중 하나는 주어진 점이 어느 사분면에 속하는지 알아내는 것이다. 사분면은 아래 그림처럼 1부터 4까지 번호를 갖는다. "Quadrant n"은 "제n사분면"이라는 뜻이다. 예를 들어, 좌

www.acmicpc.net

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)

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

 

2884번: 알람 시계

문제 상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지

www.acmicpc.net

h,m = map(int,input().split())
if m<45:
    if h == 0:
        print(23,m+60-45)
    else:
        print(h-1,m+60-45)
else:
    print(h,m-45)

 

 

 

반응형

'백준 문제풀이' 카테고리의 다른 글

baekjoon - python - 1026  (0) 2020.08.21
baekjoon - python - 1008  (0) 2020.08.21
baekjoon - python - 1001  (0) 2020.08.21
baekjoon - python -1000  (0) 2020.08.21
백준 - 입출력과 사칙연산 단계  (0) 2020.07.14

댓글