C语言算法练习之打鱼还是晒网
#include
//定义日期结构体
typedef struct DATE
{
int year;
int month;
int day;
}DATE;
//判断闰年函数
int runYear(int year)
{
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
return 1;
else
return 0;
}
//计算指定日期距离 1990 年 1 月 1 日的天数
int countDay(DATE currentDay)
{
//定义一个每月天数的数组
int perMonth[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };
int totalDay = 0;
int i = 0;
int year = 0;
//求出指定日期之前的每一年的天数累加和
for (year = 1990; year < currentDay.year; year++)
{
if (runYear(year))
{
totalDay = totalDay + 366;
}
else
{
totalDay = totalDay + 365;
}
}
//如果为闰年,则2月份为29天
if (runYear(currentDay.year))
{
perMonth[2]++;
}
//将本年内的天数累加到totalDay中
for (i = 1; i < currentDay.month; i++)
{
totalDay += perMonth[i];
}
//将本月内的天数累加到totalDay中
totalDay += currentDay.day;
return totalDay;
}
int main()
{
DATE today; //指定日期
int totalDay; //指定日期距离1990年1月1日的天数
int result; //totalDay对5取余的结果
printf("请输入指定日期,包括年,月,日,例如:1999 1 31
");
printf("请输入>:");
scanf("%d%d%d", &today.year, &today.month, &today.day);
totalDay = countDay(today); //求出指定日期距离1990年1月1日的天数
result = totalDay % 5; //天数%5 判断是打鱼还是晒网
if (result > 0 && result < 4)
{
printf("今天打鱼
");
}
else
{
printf("今天晒网
");
}
}