1710821024


私信TA

用户名:Smallbird

访问量:1974

签 名:

Primer

等  级
排  名 1233
经  验 3067
参赛次数 3
文章发表 3
年  龄 32
在职情况 学生
学  校 武夷学院
专  业

  自我简介:

解题思路:

注意事项:

参考代码:


#include<bits/stdc++.h>

using namespace std;

typedef long long ll;


//月份  1~12月:  a[1]~a[12]

int a[13] = {0,31,0,31,30,31,30,31,31,30,31,30,31};


int main()

{

int year,moth,date;

int ans = 0; 

cin>>year>>moth>>date;

if(year % 100 == 0 &&year % 400 == 0)//闰年 

a[2] = 29;

else

a[2] = 28;

for(int i = 1; i <= moth-1;i++)

{

ans += a[i];

}

ans += date;

cout<<ans<<endl;

 

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »