解题思路:
简单的转换嘛,用一下结构体。
参考代码:
#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie(0); using namespace std; int n; struct tt { int h=0,m=0,s=0; } tt; int main() { hh; cin>>n; tt.h=n/3600%60; tt.m=n/60%60; tt.s=n%60; printf("%d:%d:%d",tt.h,tt.m,tt.s); return 0; }
水就完事了
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:717 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:998 |
剪刀石头布 (C语言代码)不知道怎么直接在scanf中用枚举变量浏览:1436 |
校门外的树 (C语言代码)浏览:988 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
水仙花 (C语言代码)浏览:1163 |
前10名 (C语言代码)浏览:773 |
勾股数 (C语言代码)浏览:830 |
单词个数统计 (C语言代码)浏览:1046 |
图形输出 (C语言代码)浏览:1019 |