1039: [编程入门]宏定义之闰年判断(python) 摘要:#### ~~~python def islun(n): if n%4 == 0 and n%100 != 0: return 'L' if n%400…… 题解列表 2024年10月22日 0 点赞 0 评论 254 浏览 评分:9.9
[编程入门]宏定义之闰年判断-题解(Python代码) 摘要:解题思路:注意事项:参考代码:year=int(input())if (year%4==0 and year%100!=0) or year%400==0: print("L")else: …… 题解列表 2020年12月10日 0 点赞 0 评论 1246 浏览 评分:8.0
[编程入门]宏定义之闰年判断(超级容易理解) 摘要:解题思路:注意事项:参考代码:第一种方法:def LEAP_YEAR(y): if year % 400==0 and year % 4 ==0: print("L") …… 题解列表 2022年04月06日 0 点赞 0 评论 799 浏览 评分:6.5
[编程入门]宏定义之闰年判断 def模块版 摘要:解题思路:注意事项:参考代码:def LEAP_YEAR(y): if y%400==0 or (y%4==0 and y%100!=0) : print('L')…… 题解列表 2023年11月18日 0 点赞 0 评论 92 浏览 评分:0.0
1039: [编程入门]宏定义之闰年判断-题解(python代码) 摘要:解题思路:注意事项:参考代码:a = int(input())if a%400 == 0 or (a%4 == 0 and a%100 != 0): print('L')else…… 题解列表 2021年10月14日 0 点赞 0 评论 249 浏览 评分:0.0
python编写题解 1039: [编程入门]宏定义之闰年判断 摘要:解题思路:普通年能被4整除且不能被100整除的为闰年,世纪年能被400整除的是闰年参考代码:def LEAP_YEAR(year): if year % 4 == 0 and year % …… 题解列表 2024年03月07日 0 点赞 0 评论 121 浏览 评分:0.0
小南解题-[编程入门]宏定义之闰年判断--50ms 摘要:n=int(input())if n%400==0 or (n%4==0 and n%100!=0): print('L')else: print('N')…… 题解列表 2022年08月28日 0 点赞 0 评论 122 浏览 评分:0.0
[编程入门]宏定义之闰年判断-题解(Python代码)python 摘要:\```python num = int(input())#输入并且转换为整型 if num%4==0 and num%100!=0 or num%400==0: #判断是否是闰年 pr…… 题解列表 2019年11月22日 0 点赞 0 评论 1170 浏览 评分:0.0
[编程入门]宏定义之闰年判断 摘要:year = int(input())if year % 4 == 0 and year % 100 != 0: print("L")elif year % 400 == 0: print…… 题解列表 2021年04月07日 0 点赞 0 评论 234 浏览 评分:0.0
编写题解 1039: [编程入门]宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:def LEAP_YEAR(y): return 'L' if (y % 4 == 0 and y % 100 != 0) or y % 400…… 题解列表 2023年12月01日 0 点赞 0 评论 86 浏览 评分:0.0