c++代码中,我想要让人看一个说明需要最多十五秒,一旦键盘上有任何输入都会执行其他程序
展开全部
#include <windows.h>
#include <stdio.h>
#include <conio.h>
int main(){
int i;
int keypress=0;
puts("wait 15 second, or press any key to continue.");
for(i=0;i<150;i++) {
Sleep(100);
if(_kbhit()) {_getch(); keypress=1; break;}
}
if(keypress) puts("you press a key, now continue to run.");
else puts("time up, now continue to run.");
return 0;
}
#include <stdio.h>
#include <conio.h>
int main(){
int i;
int keypress=0;
puts("wait 15 second, or press any key to continue.");
for(i=0;i<150;i++) {
Sleep(100);
if(_kbhit()) {_getch(); keypress=1; break;}
}
if(keypress) puts("you press a key, now continue to run.");
else puts("time up, now continue to run.");
return 0;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询