编写题解 3009: 判断闰年
摘要:解题思路:注意事项:参考代码:a=int(input())if (a%4==0)&(a%100!=0): print('Y')elif (a%400==0): print(……
3009: 判断闰年
摘要:解题思路:闰年两种判定方法:要么能被4整除且不能被100整除,或者能被400整除可得参考代码:#include<iostream>
using namespace std;
int main()
……