gpt4 book ai didi

c - 键盘 c 没有 int 输入

转载 作者:行者123 更新时间:2023-11-30 19:48:55 25 4
gpt4 key购买 nike

我似乎无法让我的键盘接受输入,我也不知道为什么。我已经刷新了缓冲区(或者我认为我做到了),我得到的只是 BCS。

这是我的菜单功能

//Menu
int menu() {
int choice;

do {
printf("1)Move\n2)Display Maze\n3)Peek ahead\n");
scanf("%i", &choice);
while(getchar() != '\n');
} while(choice<=0 && choice>3);

return choice;
}//end menu

这是我的主要内容。我先打印迷宫,然后显示菜单

printMaze(maze);
do
{
choice = menu();
if(choice == 1)
{
//direction = readDirection();
//move(maze, direction);
printf("Hi\n");
}// end choice

else if(choice ==2)
//displayMaze(maze);
printf("Hello\n");
else
//peek(maze);
printf("Goodbye\n");

} while(choice!=4);//hag doesn't kill me or i find the exit)

最佳答案

您使用的是什么操作系统..,如果您是Windows版本,请尝试重新安装turbo c++编译器并重新配置“TC”目录。

关于c - 键盘 c 没有 int 输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16227930/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com