判断闰年(宏定义,给自己找找乐子)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#define YEAR(a) a%100?(a%4?'N':'Y'):(a%400?'N&……
3009: 判断闰年(c语言)
摘要:解题思路:能被4整除但不能被100整除,能被400整除的年份就是闰年注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a)……
3009: 判断闰年
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ bool flag; int year; ……
水题目,只需一个bool
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_leap(int y){ return y%4 == 0 && y % 100……
3009: 判断闰年
摘要:解题思路:闰年两种判定方法:要么能被4整除且不能被100整除,或者能被400整除可得参考代码:#include<iostream>
using namespace std;
int main()
……
编写题解 3009: 判断闰年
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if((a……