三天打鱼,两天晒网(c语言)

#include

void main()

{

  int year,month,day,i,days=0;/*定义变量年月日,days为计算计算从2010年开始到指定日期的天数*/

  int data[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};/*定义存放月份的数组,默认为平年2月为28天总天数取余*/

  printf("please enter the date:");

  scanf("%d %d %d",&year,&month,&day);/*输入日期*/

   if((year%400==0||(year%4==0&&year%100!=0))&&month>2)/*判断输入年份是否为闰年,若为闰年,,则二月份多加一天*/

  data[2]+=1;

for(i=2010;i

  {

    if(i%400==0||(i%4==0&&i%100!=0))

        days+=366;

    else

        days+=365;

}/*计算从2010年至指定年共有多少天*/

for(i=1;i

{

days+=data[i];

}

days+=day;/*计算从201011日至输入的日期共有多少天*/

printf("\nThe days is %d\n\n",days);

if(days%5==1||days%5==2||days%5==3)/*总天数取余5计算他在打渔或晒网*/

printf("%d %d %d he is fishing!\n\n",year,month,day);

else

printf("%d %d %d he is sleeping!\n\n",year,month,day);

 

}

 

你可能感兴趣的:(三天打鱼,两天晒网(c语言))