Search⌘ K
AI Features

Solution Review

Explore how to create a number guessing game by generating a random secret number and using conditional statements to check users’ guesses. Understand how infinite and fixed iteration loops control gameplay. Learn to implement win checks, provide hints, and limit attempts, gaining hands-on Java coding experience within this project.

Task I: Generate the secret number

The task was to generate a random number to be guessed by the player.

We can use the formula Math.random() * (max - min + 1) to generate a random value between 0 and 100 (inclusive). Our max value is 100 and our ...

Java
//Generating a random integer between 0 and 100 inclusive
int secret_number = (int) (Math.random() * (100 - 0 + 1));
...