1026 程序运行时间 (15 分)

水题~,就简单转换下时间。

int a,b;

int main()
{
    cin>>a>>b;

    int tim=round((b-a)/100.0);
    int hh=tim/3600,mm=tim%3600/60,ss=tim%3600%60;
    printf("%02d:%02d:%02d\n",hh,mm,ss);
    //system("pause");
    return 0;
}
posted @ 2021-02-11 17:16  Dazzling!  阅读(20)  评论(0编辑  收藏  举报