结构体变量统计天数

定义一个结构体变量(包括年月日)。计算该日在本年中是第几天
#include<iostream>
using namespace std;
struct date
{
    int year;
    int month;
    int day;
};
int main()
{
    date x;
    int days=0,i;
    int Days[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
    cin>>x.year>>x.month >>x.day;
    for(i=1;i<x.month;i++)
    {
        days+=Days[i];
    }
    days=days+x.day; 
    if(x.month>2)
    {
        if((x.year%4==0&&x.year%100!=0)||x.year%400==0)
        {
            days=days+1;
        }
    }
    cout<<days;
    return 0;
}

全部评论

相关推荐

求offer的大角牛:简历写的第一乱,没有突出重点,第二项目太多太杂看不出来有啥核心技术,第三自我评价太多了,第四获得的荣誉没啥含金量,可以不写,反正问题不少
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务