📄 main.cc
字号:
#include <iostream>using namespace std;#include "time.h"#include <unistd.h>int main(){ Time t, e; t.set( 23, 58, 50 ); t.output(); for( int i=0; i<40; i++ ) t.tick(); t.output(); for( int i=0; i<40; i++ ) t.tick(); t.output(); e.set( 23, 58, 50 ); for(;;){ sleep(1); e.tick(); e.output(); } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -