キーボードの上下キーの押下を検出するアプリケーションを作成しましたが、これらのキーを押しても何も出力されません。
Visual C++2010を使用しています
#include <iostream>
#include <conio.h>
using namespace std;
void main()
{
char x;
while(1)
{
x = getch();
if(x==0 || x==224)
{
x=getch();
if(x==80)
{
cout << "down"<<endl;
}
else if(x==72)
{
cout << "up"<<endl;
}
}//if x==0 || x=224
}//while1
}//main
何が問題になる可能性がありますか?
ありがとう