解题思路:分别判断时位分位跟秒位是否小于10,小于则在前面加上0
注意事项:
参考代码:
#include <iostream>
using namespace std;
int main()
{int n,t;
cin>>n;
while(n--)
{ cin>>t;
if(t/3600<10)cout<<0<<t/3600<<":";
else cout<<t/3600<<":";
if(t/60%60<10)cout<<0<<t/60%60<<":";
else cout<<t/60%60<<":";
if(t%60<10)cout<<0<<t%60<<endl;
else cout<<t%60<<endl;
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:736 |
C二级辅导-计负均正 (C语言代码)浏览:607 |
【回文数(二)】 (C语言代码)浏览:800 |
简单的a+b (C++语言代码)浏览:895 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:724 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
母牛的故事 (C语言代码)浏览:1451 |
完数 (C语言代码)浏览:757 |
文科生的悲哀 (C语言代码)浏览:1541 |
判定字符位置 (C语言代码)浏览:849 |