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 程序运行时间的主要内容,如果未能解决你的问题,请参考以下文章