码迷,mamicode.com
首页 > 其他好文 > 详细

1026 程序运行时间

时间:2020-02-18 13:02:43      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:int   math   turn   pre   src   clu   image   str   com   

水题。

#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 程序运行时间

标签:int   math   turn   pre   src   clu   image   str   com   

原文地址:https://www.cnblogs.com/keep23456/p/12325545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!