misty


私信TA

用户名:13486061700

访问量:12779

签 名:

等  级
排  名 1138
经  验 3166
参赛次数 0
文章发表 54
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<stdio.h>

struct YMD
{
    int year;
    int month;
    int day;
};

int main()
{
    struct YMD t;
    int s, i;
    scanf("%d%d%d", &t.year, &t.month, &t.day);
    int a[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
    if((t.year % 4 == 0 && t.year % 100 != 0) || (t.year % 400 == 0))
        a[1] = 29;
    s = t.day;
    for(i = 0; i < t.month-1; i++)
        s += a[i];
    printf("%d\n", s);
    return 0;

}

 

0.0分

0 人评分

  评论区

  • «
  • »