当前位置:网站首页>【数组】查表法(闰年)
【数组】查表法(闰年)
2022-08-02 14:13:00 【白U】
一维数组 【以空间换时间】
define MONTHERROR -1
#define YEARERROR -2
#define DAYERROR -3
bool Leap_Year(int year)
{
bool res = false;
if ((year % 100 != 0 && year % 4 == 0) || year % 400 == 0)
{
res = true;
}
return res;
}
int Get_YM_Day(int year, int month)
{
//空间换时间 static 让其生存期变长,在数据区,const 让其不可修改,能力变小。
//查表法
static const int days[] = {
29,31,28,31,30,31,30,31,31,30,31,30,31 };
if (month == 2 && Leap_Year(year))
{
month = 0;
}
return days[month];
}
int Get_YMD_Total(int year, int month, int day)
{
int sum = 0;
// int da = 0;
//查表法:static const int sum[] = {0, 0 , 31,59,90,120,151,181,212,243,273,304,334,365};
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13
//总天数都是当前的数字加上输入的天数。
if (year < 1) return YEARERROR;
if (month < 1 || month>12) return MONTHERROR;
if (day<1 || day>Get_YM_Day(year, month)) return DAYERROR;
/* if (month>2&& Leap_Year(year,month)) { //如果月份大于2 ,那么才判断是否是闰年,如果小于2就没必要了 da =1; */ }
for (int i = 0; i < month; i++)
{
sum = sum + Get_YM_Day(year, i);
}
return sum + day;
// return sum + day + da ;
}
int main()
{
int year = 0, month = 0, day = 0;
scanf_s("%d/%d/%d", &year, &month, &day);
int n = Get_YMD_Total(year, month, day);
printf("%d/%d/%d=>total: %d\n", year, month, day, n);
// 越界和输入错误判断
switch (n)
{
case YEARERROR:
printf("year input error %d\n", year);
break;
case MONTHERROR:
printf("month input error %d\n",month);
break;
case DAYERROR:
printf("day input error %d\n", day);
break;
default:
printf("%d year %d month %d day\n", year,month,day);
break;
}
return 0;
}
边栏推荐
猜你喜欢
EastWave应用:光场与石墨烯和特异介质相互作用的研究
【线程网络】了解线程属性(fork/interview question)
锥形相位掩模的Talbot图像
Based on the least squares linear regression equation coefficient estimation
Software Testing Basics (Back)
为什么Volatile能保证双重检查锁的线程安全
远程连接Ubuntu中的Mysql
Exotic curiosity-a solution looking - bit operations
第三十三章:图的基本概念与性质
px和em和rem的区别
随机推荐
面试汇总
Unity-3D数学
MySQL协议长什么样子
Based on the matrix calculation in the linear regression equation of the coefficient estimates
2342. 数位和相等数对的最大和 哈希优化
饥荒联机版Mod开发——准备工具(一)
系统性能和TCP/UDP网络优化-学习大杂烩
shader 和 ray marching
十天学习Unity3D脚本(一)九个回调
Unity-编辑器扩展(Editor)
lua编程
戴森球计划这个游戏牛逼
2. Log out, log in state examination, verification code
光波导的入射耦合和出射耦合区域
Masters and Masters
Unity-PlayMaker
二叉树的遍历:递归法/ 迭代法/ 统一迭代法(强QAQ)
Run ns3 with multiple processes
求解斐波那契数列的若干方法
Evaluate multipath BBR congestion control on ns3