主要注意点 : 也就是不足一秒的四舍五入 这里 。 注意 实现的时候加一个判断
#include <stdio.h>
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <cctype>
#include <string>
#include <cstring>
#include <algorithm>
#include <ctime>
using namespace std;
int main()
{
int start,end;
cin>>start>>end;
int second;
if ((end-start)%100>=50) {
second=(end-start)/100+1; // 四舍五入
} else {
second=second=(end-start)/100;
}
int hour=second /3600;
int min=second % 3600 /60 ;
int sec=second % 60;
printf("%02d:%02d:%02d\n",hour,min,sec);
return 0;
}