问题标题: 酷町堂:5545时长(time)50分

0
0
已解决
於海洋
於海洋
高级光能
高级光能
#include<bits/stdc++.h>
using namespace std;
/*
【样例】
9 10
10 50

100
10+50+1*60

9 10
11 50

160
=9 0
 11 40
*/
int main(){
    int a,b,c,d;
    cin>>a>>b>>c>>d;
    if(b<d){
        cout<<(c-a)*60+(d-b);
    }else if(b==d&&c==a){
        cout<<0;
    }else{
        cout<<(c-a)*60+(b-d);
    }
    return 0;
}

50分,求大佬指点迷津

於海洋在2022-09-12 16:49:51追加了内容

70分,不是50分


0
已采纳
杨家瑞
杨家瑞
新手光能
新手光能

说错了,是全部转换成分

0
杨家瑞
杨家瑞
新手光能
新手光能

服了,你直接把分秒全部转换成秒不就完事了

我要回答