gpt4 book ai didi

java - 猜猜 secret 数字java

转载 作者:行者123 更新时间:2023-11-30 03:58:41 25 4
gpt4 key购买 nike

package edu.blastermind.model;

import java.util.Random;

/**
* A NumberGuessingGame represents the rules of a simple "guess the number" type game.
*
* @author
*
*/
public class GuessTheNumberGame {

private int highest;
private int secret;

/**
* Creates a new NumberGuessingGame with a secret number between 0 and highest.
*
* @param highest the highest possible number for this game. Must be > 0.
*/
public GuessTheNumberGame(int highest) {

// TODO 1: perform a precondition check on the parameter highest
if (highest <= 0) {
throw new IllegalArgumentException
("highest number must be at least 1");
}

this.highest = highest;

Random rng = new Random();

this.secret = rng.nextInt(highest + 1);
}

/**
* Checks to see if we've guessed correctly.
*
* @param guess our guess (must be between 0 and getHighest())
* @return true if the guess was correct, false otherwise
*/
public boolean isGuessCorrect(int guess) {

// TODO 2: perform a precondition check on the variable guess
if (guess > this.highest || guess < 0) {
throw new IllegalArgumentException
("Guess must be between 1 and 100");
}

return this.secret == guess;
}

/**
* Checks to see if our guess is higher than the secret.
*
* @param guess our guess (must be between 0 and getHighest())
* @return true if our guess is higher than the secret, false otherwise
*/
public boolean isGuessHigher(int guess) {

// TODO 3: perform a precondition check on the variable guess
if (guess > this.highest || guess < 0) {
throw new IllegalArgumentException
("Guess must be between 1 and 100");
}

return this.secret < guess;
}

/**
* Returns the highest value in the range of valid guesses.
*
* @return the highest value in the range of valid guesses
*/
public int getHighest() {
return this.highest;
}
}

package edu.blastermind.controllers;

import java.util.Scanner;

import edu.westga.blastermind.model.GuessTheNumberGame;

public class GuessTheNumber {

public static void main(String[] args) {

GuessTheNumberGame game = new GuessTheNumberGame(100);
int turns = 1;

Scanner kb = new Scanner(System.in);

System.out.println("Guess a nummber between 0 and 100");
int guess = kb.nextInt();

// TODO 4: loop as long as the guess is not correct
while (!game.isGuessCorrect(guess)) {
guess++;
if (game.isGuessHigher(guess)){
System.out.println("You guessed too high!");
turns++;
}
else if (!game.isGuessCorrect(guess)){
System.out.println("You guessed too low!");
}
int GuessTheNumber = kb.nextInt();
}
turns++;

// TODO 5: in the loop, check guesses and give hints

System.out.printf("You guessed the number in %d turns\n", turns);
}
}

大家好>我正在用java编写一个猜测 secret 数字的程序,但遇到了一些问题。当我第一次运行该程序时,我不断发现我的猜测太高,而在我终止程序并再次运行它后,它说我的猜测太低。在 while 循环中,只要猜测是错误的数字,它就会循环,我相信它正在这样做,但我显然做错了一些事情。感谢任何帮助,提前致谢。

最佳答案

您的循环检查猜测的正确性。如果 guess 不正确,您可以从命令行读取一个新值并将其分配给 GuessTheNumber,而不是分配给 guess

我也不明白你为什么要进行guess++。这没有意义。

关于java - 猜猜 secret 数字java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22440277/

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