文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C程序习题-根据年月日计算该日是该年的第n天[8.18]

C程序习题-根据年月日计算该日是该年的第n天[8.18]

时间:2010-08-11  来源:chengxiaopeng

    给出年,月,日。计算该日是该年的第N天。     我们可以用一个数组,保存每一个月的天数,然后通过循环去累加天数。如果月份是大于3,则去判断year是否是闰年。如果是则自加一操作。根据此原理,编写代码如下:  

#include <stdio.h>

int is_leap(int);
int sum_day(int,int,int);
int main(int argc,char *argv[])
{
    
    int year,month,day;
    int i,leap,result = 0;
    printf("please input year,month,day:");
    scanf("%d,%d,%d",&year,&month,&day);
    
    result = sum_day(year,month,day);
        
    printf("%d/%d/%d is the %dth day in year.\n",year,month,day,result);
    system("pause");
    return 0;
}

int sum_day(int year, int month, int day)
{
    int months[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
    int i,result = 0;
    for (i = 0; i < month - 1; i++)
    {
        result += months[i];
    }
    result += day;
    
    if (month >= 3)
    {
       if (is_leap(year))
       {
          result ++;
       }
    }
    return result;
}

int is_leap(int year)
{
    int result;
    if ((year % 400 == 0) || (year % 4 ==0 && year % 100 != 0))
    {
       result = 1;
    }
    else
    {
        result = 0;
    }
    return result;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载