1 条题解

  • 0
    @ 2024-11-3 9:45:15

    水题++

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int a,b,c,d;
        cin>>a>>b>>c>>d;
        int hour=c-a,minute=d-b;//变量命名有技巧
        if(minute<0){//减法退位不要忘
    		hour--;
    		minute+=60;
    	}
        cout<<hour<<" "<<minute;
        return 0;
    }
    

    信息

    ID
    5483
    时间
    1000ms
    内存
    125MiB
    难度
    1
    标签
    递交数
    595
    已通过
    397
    上传者