"HR파이썬 Write a function"의 두 판 사이의 차이

(새 문서: ==개요== ;HR파이썬 Write a function * https://www.hackerrank.com/challenges/write-a-function/problem {{HR파이썬 헤더}} {{HR파이썬 Introduction}} |} ---- <source lang='p...)
 
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
8번째 줄: 8번째 줄:


----
----
<source lang='python'>
<syntaxhighlight lang='python'>
def is_leap(year):
def is_leap(year):
     leap = False
     leap = False
18번째 줄: 18번째 줄:
                 leap = True
                 leap = True
     return leap
     return leap
</source>
</syntaxhighlight>
<source lang='python'>
<syntaxhighlight lang='python'>
year = int(input())
year = int(input())
print(is_leap(year))
print(is_leap(year))
</source>
</syntaxhighlight>

2021년 7월 31일 (토) 10:53 기준 최신판

개요[ | ]

HR파이썬 Write a function
해커랭크 Python
# 문제 비고
HR파이썬 Introduction e
1 HR파이썬 Say "Hello, World!" With Python
2 HR파이썬 Python If-Else
3 HR파이썬 Arithmetic Operators
4 HR파이썬 Python: Division
5 HR파이썬 Loops
6 HR파이썬 Write a function
7 HR파이썬 Print Function

def is_leap(year):
    leap = False
    if year%4 == 0:
        leap = True
        if year%100 == 0:
            leap = False
            if year%400 == 0:
                leap = True
    return leap
year = int(input())
print(is_leap(year))
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}