1026 程序运行时间

Posted keep23456

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1026 程序运行时间相关的知识,希望对你有一定的参考价值。

水题。

#include<iostream>
#include<cmath>
using namespace std;

int main() {
    int c1,c2;
    cin>>c1>>c2;
    int t = round((c2-c1)/100.0);//不足 1 秒的时间四舍五入到秒
    int h = t/3600;//
    int m = t%3600/60;//
    int s = round(t%60);//
    printf("%02d:%02d:%02d",h,m,s);
    return 0;
}

技术图片

 

以上是关于1026 程序运行时间的主要内容,如果未能解决你的问题,请参考以下文章

1026. 程序运行时间

1026 程序运行时间

PAT 1026. 程序运行时间

B1026 程序运行时间

1026 程序运行时间 (15 分

1026 程序运行时间