简单问题的求教,不能运行题出在哪里?
程序代码:
#include<stdio.h> #include<conio.h> void main() { if(_kbhit()) { char ch; ch = getchar(); switch(ch) { case 'w' : printf("嘻嘻");break; case 's' : printf("哼哼");break; case 'a' : printf("哈哈");break; case 'd' : printf("嘿嘿");break; default : break; } } }