PATB1026 程序运行时间(15 分)
Posted hebust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PATB1026 程序运行时间(15 分)相关的知识,希望对你有一定的参考价值。
#include<cstdio>
#include<stdlib.h>
const int CLK_TCK=100;
int main(){
int C1,C2;
scanf("%d%d",&C1,&C2);
int shi,fen,chamiao=(C2-C1)/100;
shi=chamiao/3600;
chamiao%=3600;
fen=chamiao/60;
chamiao=chamiao%60;
if((C2-C1)%100>=50)chamiao++;
printf("%02d:%02d:%02d",shi,fen,chamiao);
return 0;
}
以上是关于PATB1026 程序运行时间(15 分)的主要内容,如果未能解决你的问题,请参考以下文章