Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

Students also viewed these Databases questions

Question

Is the person willing to deal with the consequences?

Answered: 1 week ago