gpt4 book ai didi

java - 无法在Java中调用验证方法

转载 作者:行者123 更新时间:2023-12-01 17:29:10 24 4
gpt4 key购买 nike

我有这个问题,我创建了两种验证用户输入的方法。然后我试图在程序的其余部分运行之前验证他们的输入。它不起作用,我在网上找不到任何有帮助的东西。

我在另一个程序中以完全相同的方式做到了这一点,但它在这个程序中不起作用。任何帮助将不胜感激。

(主要部分已被注释掉,因为我试图让它运行)...

    import java.util.*;




public class GuessingGame {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub



int answer;
int tries = 0;
answer = (int) (Math.random() * 99 + 1);



System.out.println("Welcome to the Guess the Number Game ");
System.out.println("+++++++++++++++++++++++++++++++++++++ \n");
System.out.println("I'm thinking of a number between 1-100 ");
System.out.println("Try to guess it! ");

Scanner sc = new Scanner(System.in);
String choice = "y";

while (choice.equalsIgnoreCase("y"))
{



int guess = getIntWithinRange(sc, "Enter number: ", 0, 100);




/**

if (guess == answer)
{
System.out.println("Your guess is correct! Congratulations!");
}
else if (guess > answer + 10)
{ System.out.println("Your guess was way too high");
tries++;
}

else if (guess < answer)
{ System.out.println("Your guess was too low. Try again. ");
tries++;
}

else if (guess > answer)
{System.out.println("Your guess was too high. Try again.");
tries++;
}



System.out.println("The number was " + answer + " !");
System.out.println("You guessed it in " + tries + " tries");

if (tries < 2)
{System.out.println("That was lucky!");
}

if (tries >=2 && tries <=4)
{System.out.println("That was amazing!");
}

if (tries > 4 && tries <= 6)
{System.out.println("That was good.");
}

if (tries >= 7 && tries <=7)
{System.out.println("That was OK. ");
}

if (tries > 7 && tries < 10)
{ System.out.println("That was not very good. ");
}

if (tries >= 10)
{System.out.println("This just isn't your game. ");
}
**/

//ask if they want to continue
System.out.println("\n Continue (y/n)? ");
choice = sc.next();
sc.nextLine();
System.out.println();

}

//print out thank you message
System.out.println("Thanks for finding the common divisor ");
sc.close();
}

public static int getInt(Scanner sc, String prompt)
{
int i = 0;
boolean valid = false;

while(valid == false);
{
System.out.println(prompt);
if (sc.hasNextInt())
{
i = sc.nextInt();
valid = true;
}
else
{
System.out.println("Please enter a number... ");
}
sc.nextLine();
}
return i;

}








public static int getIntWithinRange(Scanner sc, String prompt, int min, int max)
{
int i = 0;
boolean valid = false;

while (valid == false)
{
i = getInt(sc, prompt);
if (i <= min || i >= max)
System.out.println("Number must be between 1-100 ");
else
valid = true;
}
return i;
}

}

最佳答案

在方法 getInt() 中,这将导致无限循环:

boolean valid = false;

while(valid == false);
{

由于尾​​随分号:将其删除。尾随分号使 while 等效于:

while (valid == false) {}

这意味着预期的循环体永远不会执行,并且 valid 的值永远不会改变。

关于java - 无法在Java中调用验证方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12703756/

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