メニューを作っています。矢印キーを使用してリストから選択したい。
char move;
do
{
move = (char)_getch();
if (move == 38)
{
// Move Indicator Up
}
else if (move == 40)
{
// Move Indicator Down
}
}
while (move != 13);
上下キーに間違った ascii 値を使用していませんか?
解決した
(char)_getch() を (int)_getch() に置き換え、char を int に移動し、次に 38 と 40 を ?? に置き換えました。そして80