文章
10
粉丝
99
获赞
5
访问
7.3k
#include <bits/stdc++.h>
using namespace std;
struct node{
int year;
int month;
int day;
}p;
int f[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int main(){
int m;
int plus;
int sum=0;
scanf("%d",&m);
for(int i=0;i<m;i++){
scanf("%d%d%d%d",&p.year,&p.month,&p.day,&plus);
{
if((p.year%400==0)||(p.year%4==0)&&(p.year%100!=0)) f[2]=29; else f[2]=28;
sum=sum+p.day+plus;
while(sum>f[p.month]){
sum=sum-f[p.month];
...
登录后发布评论
暂无评论,来抢沙发