使用getch()函数
getch作用是等待键盘按键,并且返回按键的键值。
比如ESC的键值为27,我们可以写程序为
#include int main(){while(getch()!=27);printf("OK!");}