C++\编写一个时钟程序,模拟数字时钟的显示。

日期:2020-03-16 22:01:02 人气:16
程序代码如下: #include #include using namespace std; class Clock{ public: Clock(short h=0,short m=0,short s=0):h(h),m(m),s(s){ } void displayTime(); private: short h; short m; short s; };void Clock::displayTime(){ while(true){ cout<<h<<':'&l
上一篇:
下一篇:

最新更新

热门内容

本站所有信息来源于互联网,用于学习参考使用,版权归原作者所有!
第一知识网 知识是第一生产力