中国有句俗语叫“三天打鱼两天晒网”。 某人从1990年1月1日起开始“三天打鱼两天晒网”, 问这个人在以后的某一天中是“打鱼”还是“晒网”?

#include<stdio.h>

int count_Days(int y,int m,int d)//计算总共的天数
{
    int d1=0,d2=0,d3=0,sum=0,year;
    int data[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
    if(y%400==0||(y%4==0&&y%100!=0))//判断是否是闰年
      {
          data[2]=29;
          year=366;
      }
    else
      year=365;
    d1=(y-1990)*year;
    for(int i=1;i<m;i++)
      d2+=data[i];
    d3=d;
      sum=d1+d2+d3;
      if(sum%5<=3&&sum%5>=1)
        //(3天打渔2天晒网,每5天循环一次,计算总数模5即可)
        return 1;
      else
        return 0;
}


int main()
{
    int s,year,month,day;
    printf("Please input the year、month and day(y m d):\n");
    while(~scanf("%d%d%d",&year,&month,&day))
    {
      if(year<1990)
        {printf("The year should be great than 1990");break;}
      if(month<1||month>12)
        {printf("The month input is error!");break;}
      if(day<0||day>31)
        {printf("The month input is error!"); break;}
        //以上三个if是判断year ,month,day的合理性
      s=count_Days(year,month,day);
        //调用函数
      switch(s)
      {
        case 1: printf("Fishing\n");break;
        case 0: printf("sun network\n");break;
        default:break;
      }
    }
    return 0;
}

结果如下:


以下是一个简单的 C 语言程序,可以实现上述题目的要求: ```c #include <stdio.h> int main() { int year, month, day; int days_since_1990_01_01; int remainder; // 读入日期 printf("请输入日期(格式为 yyyy-mm-dd):"); scanf("%d-%d-%d", &year, &month, &day); // 计算从 1990 1 1 日到目标日期共经过了多少天 days_since_1990_01_01 = (year - 1990) * 365 + (year - 1990) / 4; switch (month - 1) { case 11: days_since_1990_01_01 += 30; case 10: days_since_1990_01_01 += 31; case 9: days_since_1990_01_01 += 30; case 8: days_since_1990_01_01 += 31; case 7: days_since_1990_01_01 += 31; case 6: days_since_1990_01_01 += 30; case 5: days_since_1990_01_01 += 31; case 4: days_since_1990_01_01 += 30; case 3: days_since_1990_01_01 += 31; case 2: days_since_1990_01_01 += 28; case 1: days_since_1990_01_01 += 31; } days_since_1990_01_01 += day - 1; if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { // 闰 2 有 29 天 if (month > 2) { days_since_1990_01_01++; } } // 对 5 取模,判断是在“打鱼”还是在“晒网” remainder = days_since_1990_01_01 % 5; if (remainder == 1 || remainder == 2 || remainder == 3) { printf("他在打鱼\n"); } else { printf("他在晒网\n"); } return 0; } ``` 在这个程序,我们先通过 `scanf()` 函数读入了目标日期,然后计算从 1990 1 1 日到目标日期共经过了多少天,最后对 5 取模,判断是在“打鱼”还是在“晒网”。注意在计算经过的天数时需要考虑闰的情况,这里使用了一个简单的判断方法。
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值