#18877: 新手的解題嘗試


python_noob (python_noob)

學校 : 不指定學校
編號 : 100791
來源 : [114.43.1.62]
最後登入時間 :
2019-11-23 15:38:08
a004. 文文的求婚 | From: [114.43.11.182] | 發表日期 : 2019-08-11 00:52

# 引入 system,可以使用 stdin,例如
# import sys

# 從 stdin 裡每次讀取一行,存在類別為 str 的變數 s 裡,例如
# for s in sys.stdin:
    
    # 取得年份,例如
    # year = int(s)
    
    # (可被4整除(year % 4 == 0) 且 不可被 100 整除(year % 100 != 0)) 或 可被 400 整除(year % 400 == 0)
    # 在 Python 中,and 的優先權比 or 高

    '''
    if(year % 4 == 0 and year % 100 != 0 or year % 400 == 0):
        print("閏年")
    else:
        print("平年")

    '''

 
ZeroJudge Forum