简单问题的求教,不能运行题出在哪里?

#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; } } }

从前风闻有你,现在我亲眼看见你