gpt4 book ai didi

c++ - 如何停止 while 循环

转载 作者:太空狗 更新时间:2023-10-29 23:02:31 26 4
gpt4 key购买 nike

这个 while 循环永远不会结束。例如,当我输入错误的密码时,它会一遍又一遍地转到“密码错误”部分。

Logo();
inFile.open("UsernamePassword.txt");
if (!inFile)
cout << "Unable to Open File";
else
{
cout << endl << endl << endl;
cout << " Please enter username: ";
cin >> user;
cout << " Please enter password: ";
cin >> pass;

while (username != user)
{
inFile >> username >> password;

if (user == username && pass == password)
{
cout << endl;
cout << "Welcome to CherryLunch!" << endl;

system("pause");
system("cls");

MainMenu();

}
else
{
cout << endl;
cout << " Invalid Username or Password!" << endl << endl;
system("pause");
system("cls");
}
}
}
inFile.close();

最佳答案

while 循环是无限的,因为您永远不允许用户输入新密码或用户名。当 if 语句失败时,它会返回到循环头(仍然是错误的地方)并继续前进。

让用户有机会输入新的用户/密码组合,然后循环仍然是有限的(前提是用户最终提供了正确的凭据)。

关于c++ - 如何停止 while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28185382/

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