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

【PAT】B1026 程序运行时间(15 分)

时间:2018-08-18 19:36:49      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:++   ons   amp   const   scanf   code   print   程序   程序运行时间   

#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;
}

【PAT】B1026 程序运行时间(15 分)

标签:++   ons   amp   const   scanf   code   print   程序   程序运行时间   

原文地址:https://www.cnblogs.com/hebust/p/9498078.html

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