我是一名正在学习 IB 计算机科学的初学者程序员,并且正在从教科书上学习做练习。用户输入错误密码 3 次后如何结束此循环。
public class Password
{
public static void main(String[]args)
{
int remaining = 3;
String reenter="hello";
do
{
String password=IBIO.inputString("Please enter the password: ");
if (password.indexOf("hello")>-1)
{
System.out.println("Welcome");
}
else
{
System.out.println("Access Denied");
remaining--;
}
reenter=IBIO.inputString("Enter the password: ");
}
while (reenter.equals("hello"));
while (remaining > 0);
}
}
所以这就是现在的样子,但是当我输入密码错误时,它只说一次访问被拒绝,然后就无法显示任何东西。我很确定我不能像这样在彼此之上有 2 个时间。而且当我正确输入密码时,它会一直要求我输入密码,这样它就不会关闭循环。只有每隔一次我正确输入它才会说“欢迎”