python中有什么方法可以让代码执行到某处后暂停执行,而是必须用户按一下空格后者点一下鼠标才能继
发布网友
发布时间:2022-05-27 03:57
我来回答
共1个回答
热心网友
时间:2023-10-06 05:39
#include <stdio.h>
#include <conio.h>
void DoWork()
{
printf("Hello world!\n");
}
int main()
{
int k;
while(1)
{
DoWork();
if(kbhit())
{
k=getch();
if(k==' ')
{
while(1)
if(kbhit() && getch()==' ')
break;
}
else if(k==27)//ESC
break;
}
}
return 0;
}追问这是python语言么?这是C吧?一.一