1. 윤년 (Leap Year)
만든이 : 슬픈 국수
2. 문제정보
level.goorm.io/exam/43204/%EC%9C%A4%EB%85%84-leap-year/quiz/1
3. 풀이
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
user_input = int(input())
if user_input % 400 == 0: ''' 높은 수 부터 순차적으로 내려가면 된다'''
print("Leap Year")
elif user_input % 100 == 0:
print("Not Leap Year")
elif user_input % 4 == 0:
print("Leap Year")
else:
print("Not Leap Year")
4. 결과
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
user_input = int(input())
if user_input % 400 == 0:
print("Leap Year")
elif user_input % 100 == 0:
print("Not Leap Year")
elif user_input % 4 == 0:
print("Leap Year")
else:
print("Not Leap Year")
'Goorm ide 코딩 문제 > Level 1' 카테고리의 다른 글
[Goorm LEVEL 1] 피라미드 (0) | 2021.04.13 |
---|---|
[Goorm LEVEL 1] 세로 순서 사각형 (0) | 2021.04.13 |
[Goorm LEVEL 1] ASCII 코드 (0) | 2021.04.13 |
[Goorm LEVEL 1] 몫과 나머지 (0) | 2021.04.13 |
[Goorm LEVEL 1] 16진수 (0) | 2021.04.13 |