Question: This is for ****JAVA***** In this assignment you will design a program that will guess a number between 1 and 100. This program must use

This is for ****JAVA*****

In this assignment you will design a program that will guess a number between 1 and 100. This program must use recursion to get credit.

import java.io.PrintStream; import java.util.Scanner;

public class NumberGuessingGame { public static void main(String[] args) { int secretNumber = (int)(Math.random() * 99.0D + 1.0D); Scanner keyboard = new Scanner(System.in); int guess; do { System.out.print("Enter a guess (1-100): "); guess = keyboard.nextInt(); if (guess == secretNumber) { System.out.println("Your guess is correct. Congratulations!"); } else if (guess < secretNumber) { System.out.println("Your guess is smaller than the secret number."); } else if (guess > secretNumber) { System.out.println("Your guess is greater than the secret number."); } } while (guess != secretNumber); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!