PAT-B1026 程序运行时间

Posted alwayszzj

tags:

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

 1 #include<iostream>
 2 #include<iomanip>
 3 using namespace std;
 4 
 5 int main()
 6 
 7     int CLK_TCK=100;
 8     long long int C1,C2,C3;
 9     int hh,mm,ss;
10     cin>>C1>>C2;
11     C3=(int)((C2-C1)/100.0+0.5);
12 
13     hh=C3/3600;
14     mm=C3%3600/60;
15     ss=C3%60;
16 
17     cout<<setw(2)<<setfill(0)<<hh<<":"<<setw(2)<<setfill(0)<<mm<<":"<<setw(2)<<setfill(0)<<ss<<endl;
18     return 0;
19 

1.四舍五入的方法:int i = (int)(f + 0.5); //i就是f四舍五入的结果。

题目注意除法要除以100.0

2.C++中 指定输出宽度 并且高位补0 头文件iomanip setw()函数和setfill()函数

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

1026. 程序运行时间(15)

1026. 程序运行时间

PAT 1026. 程序运行时间

B1026 程序运行时间

1026 程序运行时间 (15 分

B1026. 程序运行时间