반응형
2.if문
#1330 두 수 비교하기
a,b =map(int, input().split())
if a>b:
print('>')
elif a<b:
print('<')
else:
print('==')
#9498 시험성적
score =int(input())
if score >=90:
print('A')
elif score >=80:
print('B')
elif score >=70:
print('C')
elif score >=60:
print('D')
else :
print('F')
#2753 윤년
leap_year = int(input())
if leap_year %4==0 and (leap_year%100!=0| leap_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)
# 2884 알람 시계
hh,mm =map(int, input().split())
if mm<45:
hh-=1
mm+=15
if hh <0:
hh=23
else:
mm-=45
print(hh,mm)
반응형
'Data > Python' 카테고리의 다른 글
백준 알고리즘 [파이썬]: 6. 함수 : 15596 정수 N개의 합 (0) | 2021.06.24 |
---|---|
백준 알고리즘 [파이썬]: 5. 1차원 배열 (0) | 2021.06.22 |
백준 알고리즘 [파이썬]: 4. While 문 (0) | 2021.06.21 |
백준 알고리즘 [파이썬]: 3. for문 (0) | 2021.06.20 |
[Python] Google Colab(코랩) 런타임 연결 끊김 문제 자동 재연결로 해결 (0) | 2021.06.18 |