0
已解决
廖睿轩
新手光能
新手光能
说别的没用,直接上代码
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
int n;
int cnt;
struct stu{
int s,y,d;
}a,b;
int main(){
cin>>a.s>>a.y>>a.d;
cin>>b.s>>b.y>>b.d;
a.s+=b.s;
a.y+=b.y;
a.d+=b.d;
if(a.d>=60){
a.y+=1;
a.d=60;
}
if(a.y>=60){
a.s+=1;
a.y=60;
}
cout<<a.s<<" "<<a.y<<" "<<a.d;
return 0;
}
望大佬找错,62分