思路:算出总分钟数相减再模
#include<bits/stdc++.h>//万能头
using namespace std;
int main(void){//不用加“return 0”
cin.tie(0);//代码优化
ios::sync_with_stdio(false);//代码优化
int a1,b1,a2,b2,n,m,x,y;
cin>>a1>>b1>>a2>>b2;
n=a1*60+b1;
m=a2*60+b2;
if(n>=m) m+=24*60;
x=(m-n)/60;
y=(m-n)%60;
cout<<"O JOGO DUROU "<<x<<" HORA(S) E "<<y<<" MINUTO(S)";
}
谢谢大家,点个赞再走呗
厉害