解题思路:
注意事项:
参考代码:
#include<iostream> #include<iomanip> #include<cmath> using namespace std; class Time { public: void Set(int time) { this->h=time/3600; this->m=time%3600/60; this->s=time%60; } void Display() { cout<<h<<":"<<m<<":"<<s<<endl; } private: int h,m,s; }; int main() { class Time t; long int t1; cin>>t1; t.Set(t1); t.Display(); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:693 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:584 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:723 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:672 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
C二级辅导-等差数列 (C语言代码)浏览:891 |
整除的尾数 (C语言代码)浏览:853 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:751 |
【出圈】 (C++代码)简单循环浏览:699 |
拆分位数 (C语言代码)浏览:464 |