gpt4 book ai didi

c++ - While 循环不识别输入

转载 作者:行者123 更新时间:2023-11-27 22:45:10 26 4
gpt4 key购买 nike

我在这里不知所措。所以我有这个简单的 while 循环,目的是允许用户在不小心输入错误的情况下重新输入数字。问题是,如果您输入“2”,它会再次循环。我不能,我这辈子都想不通。

void Player::playerPick()
{
int selection = 0;
while (selection != (1 || 2))
{
cout << "Player 1 or Player 2 (Type [1] or [2])";
cin >> selection;
}
}

最佳答案

你写道:

while (selection != (1 || 2))

这是“而选择不是一个或两个”。

实际正确的英文是“while selection is neither one nor two”,在C++中也是如此:

while (!(selection == 1 || selection == 2))

或者,更简单地说,“虽然选择不是一个,选择也不是两个”:

while (selection != 1 && selection != 2)

表达式1 || 2 的计算结果为 true,因此您编写了 while (selection != true)任何 非零值都是这种情况selection 的值。

关于c++ - While 循环不识别输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43943979/

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