📄 c27.cpp
字号:
// c27.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "Watch.h"
#include <conio.h>
int main(int argc, char* argv[])
{
Watch s1;
s1.Start();
getch();
s1.Stop();
Watch s2( clock() );
getch();
s2.Stop();
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -