码迷,mamicode.com
首页 > 其他好文 > 详细

华为机试—算日期

时间:2014-12-24 13:30:19      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:华为

题目:算日期

输入一个日期,输出这是这一年的第几天。(题目中没有给出闰年的定义)

输入 20131231

输出 365


#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int months[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int y,m,d;
int isLeapYear(int y)
{
    if((y%4==0&&y%100!=0)|| y%400==0)return 1;
    else return 0;
}
int solve()
{
    int ans=0;
    int i=1;
    while(i<m)
        ans+=months[i++];
    ans+=d;
    return ans;
}
int main(int argc, char *argv[])
{
    char s[10];
    while(~scanf("%s",s))
    {
        char tmp[5];
        strncpy(tmp,s,4);
        tmp[4]='\0';
        y=atoi(tmp);
        strncpy(tmp,s+4,2);
        tmp[2]='\0';
        m=atoi(tmp);
        strncpy(tmp,s+6,2);
        tmp[2]='\0';
        d=atoi(tmp);
        if(isLeapYear(y))
        {
            months[2]+=1;
            printf("%d\n",solve());
            months[2]-=1;
        }
        else
            printf("%d\n",solve());
    }

    return 0;
}



华为机试—算日期

标签:华为

原文地址:http://blog.csdn.net/wdkirchhoff/article/details/42122117

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!