欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PATB:1026程序运行时间

程序员文章站 2022-05-27 14:51:55
...

PATB:1026程序运行时间
注意输出格式:在一行中输出被测函数运行的时间。运行时间必须按照“hh:mm:ss”(即2位的“时:分:秒”)格式输出;不足1秒的时间四舍五入到秒

#include"stdio.h"
int main()
{
    long long c1, c2;
    int time;
    scanf("%lld %lld", &c1, &c2);
    if ((c2 - c1) % 100 >= 50)
    {
        time = (c2 - c1) / 100 + 1;
    }
    else {
        time = (c2 - c1) / 100;
    }
    int hh, mm, ss;
    hh = time / 3600;
    mm = (time - hh * 3600) / 60;
    ss = time % 60;
    printf("%02d:%02d:%02d\n", hh, mm, ss);
    return 0;
}