int months[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; boolcheck(int date) { int year = date / 10000; //年 int month = date % 10000 / 100; //月 int day = date % 100; //日 if(!month || month > 12 || !day ) returnfalse;//如果月份大于12或者为零或者天数为零则该日期不合法 if(month != 2 && day > months[month]) returnfalse;//在不是二月的情况下,该月实际天数大于该月最大天数,则该日期不合法 if(month == 2) //特判二月 { if((year % 4 == 0&& year % 100 != 0) || (year % 400 == 0))//特判闰年 { if(day > 29) returnfalse; } elseif( day > 28) returnfalse; } returntrue; }
题目描述
已知今天是星期六 ,请问20的22次方天后是星期几? 注意用数字1到7表示星期一到星期日。
快速幂算法
#include<iostream> usingnamespace std;
// 快速幂函数,计算 a 的 b 次方对 m 取模的结果 longlongfastPower(longlong a, longlong b, longlong m){ longlong result = 1; a = a % m; while (b > 0) { if (b & 1) { result = (result * a) % m; } a = (a * a) % m; b =>> 1; } return result; }