obuffer.cc

来自「资深C++讲师授课代码」· CC 代码 · 共 18 行

CC
18
字号
#include <iostream>
using namespace std;
#include <ctime>

void wait1second()
{
	long now=time(NULL);
	while(time(NULL)==now){}
}
int main()
{
	cout << "hello";
	for(int i=0; i<10; i++)
		wait1second();
	cout << endl;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?