his is my code but it does not match the sample code please help

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

this is my code but it does not match the sample code please help

```java
import java.util.Random;
import java.util.Scanner;
//Defining the Class

public class GuessANumber_Part1{

    //defining the main method
    public static void main(String[] args) {
        //Defining the Scanner class

        Scanner sc = new Scanner(System.in);
        //Defining the Random class
        Random rand = new Random();
        int randomNumber = rand.nextInt(100 + 1);

        System.out.print("Welcome to the Guessing Game!\n");
        System.out.println("\nEnter a seed:");
        System.out.println("Enter a number between 1 and 100");
        //reading the random number
        int num = sc.nextInt();
        //defining the variables
        int flag = 0, temp_num;
        //loop for iterating
        for(int i=0;i<10;i++) {
            //generating the random number
            temp_num = rand.nextInt(100);
            System.out.println("Number Guessed is " + temp_num);
            if(num == temp_num) {
                //printing the number
                System.out.println("Number Guessed correct");
                flag = 1;
            }
        }
        //if guess is wrong if it will print
        if(flag == 0){
            System.out.println("Number is not Guessed in 10 guesses " + num);
        }
    }
}
```

### Description

This Java program is a simple guessing game where the user is prompted to enter a number between 1 and 100. The program then attempts to guess this number by generating random numbers up to ten times. If the generated random number matches the user's input, the program prints that the number was guessed correctly. If it fails to guess the number within ten tries, it outputs that the number was not guessed.

### Key Components

- **Imports:**
  - `java.util.Random`: Used to generate random numbers.
  - `java.util.Scanner`: Used to take input from the user.

- **Main Class:**
  - `GuessANumber_Part1`: The main class where the logic of the game is implemented.

- **Main Method (`public static void main`)**: 
  - Initializes the `Scanner` and `Random` objects.
  - Accepts user input for the number to be guessed.
  - Uses a loop to generate random numbers and compare them with the user's number.
  - Outputs whether the
Transcribed Image Text:```java import java.util.Random; import java.util.Scanner; //Defining the Class public class GuessANumber_Part1{ //defining the main method public static void main(String[] args) { //Defining the Scanner class Scanner sc = new Scanner(System.in); //Defining the Random class Random rand = new Random(); int randomNumber = rand.nextInt(100 + 1); System.out.print("Welcome to the Guessing Game!\n"); System.out.println("\nEnter a seed:"); System.out.println("Enter a number between 1 and 100"); //reading the random number int num = sc.nextInt(); //defining the variables int flag = 0, temp_num; //loop for iterating for(int i=0;i<10;i++) { //generating the random number temp_num = rand.nextInt(100); System.out.println("Number Guessed is " + temp_num); if(num == temp_num) { //printing the number System.out.println("Number Guessed correct"); flag = 1; } } //if guess is wrong if it will print if(flag == 0){ System.out.println("Number is not Guessed in 10 guesses " + num); } } } ``` ### Description This Java program is a simple guessing game where the user is prompted to enter a number between 1 and 100. The program then attempts to guess this number by generating random numbers up to ten times. If the generated random number matches the user's input, the program prints that the number was guessed correctly. If it fails to guess the number within ten tries, it outputs that the number was not guessed. ### Key Components - **Imports:** - `java.util.Random`: Used to generate random numbers. - `java.util.Scanner`: Used to take input from the user. - **Main Class:** - `GuessANumber_Part1`: The main class where the logic of the game is implemented. - **Main Method (`public static void main`)**: - Initializes the `Scanner` and `Random` objects. - Accepts user input for the number to be guessed. - Uses a loop to generate random numbers and compare them with the user's number. - Outputs whether the
**Sample Output for the Guessing Game:**

---

**Welcome to the Guessing Game!**

- **Enter a seed:**  
  `33`

- **Please enter a number between 1 and 100:**  
  `5`  
  *Too high. Guess again:*  
  `4`  

  *Congratulations. You guessed correctly!*  
  *You needed 2 guesses.*

---

**Welcome to the Guessing Game!**

- **Enter a seed:**  
  `50`

- **Please enter a number between 1 and 100:**  
  `50`  
  *Too high. Guess again:*  
  `25`  
  *Too high. Guess again:*  
  `12`  
  *Too low. Guess again:*  
  `19`  
  *Too high. Guess again:*  
  `15`  
  *Too low. Guess again:*  
  `17`  
  *Too high. Guess again:*  
  `18`  

  *Congratulations. You guessed correctly!*  
  *You needed 8 guesses.*

---

**Welcome to the Guessing Game!**

- **Enter a seed:**  
  `0`

- **Please enter a number between 1 and 100:**  
  `61`  

  *Congratulations. You guessed correctly!*  
  *You needed only 1 guess.*
Transcribed Image Text:**Sample Output for the Guessing Game:** --- **Welcome to the Guessing Game!** - **Enter a seed:** `33` - **Please enter a number between 1 and 100:** `5` *Too high. Guess again:* `4` *Congratulations. You guessed correctly!* *You needed 2 guesses.* --- **Welcome to the Guessing Game!** - **Enter a seed:** `50` - **Please enter a number between 1 and 100:** `50` *Too high. Guess again:* `25` *Too high. Guess again:* `12` *Too low. Guess again:* `19` *Too high. Guess again:* `15` *Too low. Guess again:* `17` *Too high. Guess again:* `18` *Congratulations. You guessed correctly!* *You needed 8 guesses.* --- **Welcome to the Guessing Game!** - **Enter a seed:** `0` - **Please enter a number between 1 and 100:** `61` *Congratulations. You guessed correctly!* *You needed only 1 guess.*
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Types of trees
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education