题目描述
文件如下:https://labfile.oss.aliyuncs.com/courses/21074/records.txt
解题代码
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
int months[13]={
0,31,28,31,30,31,30,31,31,30,31,30,31};
int monthh[13]={
};
struct datas{
int year;
int month;
int day;
int hour;
int minute;
int second;
};
bool cmp(datas a, datas b)