我这里有一个代码,它可能会在继续之前延迟 10 秒,但我想添加一个功能,用户可以等待该延迟或按任意键继续,我知道它不会像delay(10000) || getch();
任何方式那样做?
#include <stdio.h>
#include <conio.h>
#include <dos.h>
void main(){
clrscr();
printf("Press Any Key or Wait for 10 Seconds to Continue");
delay(10000);
//getch();
}