鱼C论坛

 找回密码
 立即注册
查看: 2953|回复: 0

[学习笔记] “三天打鱼两天晒网”,某人从1990年1月1日起开始“三天打鱼两天晒网”。问这个人...

[复制链接]
发表于 2021-5-18 18:14:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>
long y_tianshu(int y);
int n_tianshu(int y, int n);
int T(int y, int n,int d);

long y_tianshu(int y)//计算当年之前的天数
{

long a=0;

if (y == 1990) a = 0;

else if (y == 1991) a = 365;

else if (y == 1992) a = 365 * 2;

else if (y == 1993) a = 365 * 2 + 366;

else if (y > 1993 && y < 1997)

a = 365 * 2 + 366 + (y - 1993) * 365;

else if (y >= 1997)

a = 365 * 2 + 366 + (y - 1993) * 365 + (y - 1993) / 4;

return a;
}

int n_tianshu(int y, int n)//计算在本年,当月之前的天数
{
int s; int b=0;
for (int a = 1; a <= n - 1; a++)
{

    switch (a)//根据月份判断天数
    {

    case 1:s = 31; break; case 2:s = 28; break;

    case 3:s = 31; break; case 4:s = 30; break;
    
    case 5:s = 31; break; case 6:s = 30; break;

    case 7:s = 31; break; case 8:s = 31; break;

    case 9:s = 30; break; case 10:s = 31; break;

    case 11:s = 30; break; case 12:s = 31; break;
    }

    if (a == 2)//判断闰年2月差异
    {
        if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0)
        s = 29;

        else
        s = 28;
    }

    b = b + s;
}
return b;
}

int T(int y, int n,int d)//判断输入的月份的天数是否正确
{
int s=0; 

switch (n)//根据月份判断天数
{
case 1:s = 31; break; case 2:s = 28; break;

case 3:s = 31; break; case 4:s = 30; break;

case 5:s = 31; break; case 6:s = 30; break;

case 7:s = 31; break; case 8:s = 31; break;

case 9:s = 30; break; case 10:s = 31; break;

case 11:s = 30; break; case 12:s = 31; break;
}

if (n == 2)//判断闰年2月差异
{
    if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0)
    s = 29;

    else
    s = 28;
}

if (d <= s) return 0;
else return 1;
}

void main()
{

int y, n, d;

while (1)
{
    scanf_s("%d-%d-%d", &y, &n, &d);//输入时间
    
    while (y <= 0 || n <= 0 || d <= 0 || y < 1990||T(y, n, d)||n>12)

    {    //控制输入的数据为正,并且在1990之后
        //控制相应月份对应所具有的相应天数

        printf("input error!please re-input:\n");
    
        scanf_s("%d-%d-%d", &y, &n, &d);

    }

    long a = y_tianshu(y) + n_tianshu(y, n) + d;
    a = a % 5;

    if (a <= 3&&a>0) printf("他在打鱼\n");//利用总日子除以5的余数判断
    else printf("他在晒网\n");
}
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-9 01:07

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表