可以用conio.h里面的getch()函数,它和getchar()类似但是不需要你按回车或者空格,比如 include<stdio.h>#include<conio.h>int main(void){getch();printf("你按了一下键盘\n");return 0;}