**已关闭。**此问题需要debugging details。目前不接受答案。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
41分钟前关闭
Improve this question的
我写了一个循环,我认为案例4会让我跳出循环,但不知何故,它不会。
while (menu == 1)
{
printf("you made it.");
}
while (menu == 2)
{
int freeSlots = calcFreeSlots(inventar, sizeInv);
int optionsInv = optionsInvQuestion(); //returns an OptionValue for the InvMenuOptions
switch (optionsInv)
{
case 1: //openInv
printInv(inventar, sizeInv, freeSlots);
break;
case 2: //removeItem
printf("Not Implemented\n");
break;
case 3: //addItem
printf("Not Implemented\n");
break;
case 4: //exitInvMenu
menu = 1;
break;
}
}
字符串
我试着问ChatGPT,它没有帮助。
1条答案
按热度按时间rjjhvcjd1#
假设上面截取的代码进入第二个while循环,如果optionsInv的值为4,则肯定会退出循环
字符串
输出:
的数据