VS2015 Console 倒计时关闭

介绍一个简单的倒计时关闭 Console 程序的方法,下面在 VS2015 下编译通过:

#include "stdafx.h"
#include <conio.h>
#include <windows.h>

int main()
{
	int j = 0;
	while ((!_kbhit())&&j<50) {
		printf("\n no key pressed. %d", j);
		Sleep(1000);
		j++;
	}

	_getch();
    return 0;
}
运行结果

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注