介绍一个简单的倒计时关闭 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;
}