问题标题: 酷町堂:2686读秒合并

0
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分


0
已采纳
张天璨
张天璨
新手天翼
新手天翼

一道简单的模拟题。
模拟思路:** 

0
我要回答