解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <string>
#include <iterator>
#include <numeric>
#include <cmath>
#include <cstdlib>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include <string.h>
using namespace std;
int main(){
int n;
cin>>n;
cout<<n/3600<<":"<<n%3600/60<<":"<<n%3600%60<<endl;
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:584 |
校门外的树 (C语言代码)浏览:733 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:573 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:2121 |
sizeof的大作用 (C语言代码)浏览:1591 |
杨辉三角 (C语言代码)浏览:505 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:587 |
C二级辅导-等差数列 (C语言代码)浏览:891 |
敲七 (C语言代码)浏览:2747 |
数列排序 (C语言代码)浏览:674 |