Question
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.
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.
*****************IN JAVA***********
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started