c语言用devc++写的模拟时钟,最简单的也行,但是要在devc++上运行。

# include & ltiostream & gt

# include & ltwindows.h & gt

使用?命名空间?std

班级?时钟{

公共:

时钟(短?h=0,短?m=0,短?s=0):h(h),m(m),s(s){

}

作废?显示时间();

私人:

矮?h;

矮?m;

矮?s;

};作废?Clock::displayTime(){

while(true){

cout & lt& lth & lt& lt:' & lt& ltm & lt& lt:' & lt& lts & lt& lt"";

睡眠(1000);//一秒更新一次?

cout & lt& lt\ r ';

如果(!(s=++s%60))

如果(!(m=++m%60))

h = ++ h % 24;

}

}?int?主()

{

时钟?A(12,20,30);//初始时间

a . display time();//更新功能

回归?0;

}

/*

12:20:30?

*/