PTA_基础编程题目集_编程题7-2_然后是几点

PTA|程序设计类实验辅助教学平台

基础编程题目集

编程题7-2_然后是几点

#include
using namespace std;
int main()
{
    int A,B;
    cin>>A>>B;
    int m,n;
    m=A/100;
    n=A%100;
    n+=B;
    if(n<0)
    {
        int x=(0-n)/60+1;
        m-=x;
        n+=60*x;
    }
    if(n>=60)
    {
        int x=n/60;
        m+=x;
        n-=60*x;
    }
    cout<<m;
    if(n==0) cout<<"0";
    cout<<n; 
    return 0;
}

你可能感兴趣的:(PTA_基础编程题目集_编程题7-2_然后是几点)