#include <cstdio>
#include <iostream>
using namespace std;
int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
bool check_valid(int year, int month, int day)
{
if (month == 0 || month > 12) return false;
if (day == 0) return false;
if (month != 2)
{
if (day > days[month]) return false;
}
else
{
int leap = ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0));
if (day > days[month] + leap) return false;
}
return true;
}
int main()
{
int a, b, c;
scanf("%d/%d/%d", &a, &b, &c);
for (int date = 19600101; date <= 20591231; date ++ )
{
int year = date / 10000, month = date % 10000 / 100, day = date % 100;
if (check_valid(year, month, day))
{
if ((year % 100 == a && month == b && day == c) || // 年/月/日
(month == a && day == b && year % 100 == c) || // 月/日/年
(day == a && month == b && year % 100 == c) ) //月/日/年
printf("%d-%02d-%02d\n", year, month, day); //补前导0
}
}
return 0;
}
这样判断不是更简单吗?
你这个只有判断成功的时候才会被改成28,其余时间都是29
判断成功的时候,改成 29,用完马上改成28。
orz
算法笔记有这个解法
自己按个check的,最后又是排序又要判断重复
好简洁 对比了下我的 哭了
if (day > days[month] + leap) return false;
请问其中的+号是什么意思?
我之前一直没见过这种用法
上面leap是判断该年份是不是闰年 如果是 返回1 leap=1,不是的话leap=0;
如果是leap 二月要加上1天 也就是+leap
天才,我自己想了一大堆if条件控制麻烦得要死,大佬直接跳出常规思路,太厉害了
orz
补前导零真是妙啊
后面if语句有个注释写错了,应该是“日月年”
秒啊,很简洁