Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2014 Nancy France September 15 19 2014 Proceedings Part I Lnai 8724

Authors: Toon Calders ,Floriana Esposito ,Eyke Hullermeier ,Rosa Meo

2014th Edition

3662448475, 978-3662448472

More Books

Students also viewed these Databases questions

Question

Discuss the key ambient conditions and their effects on customers.

Answered: 1 week ago

Question

Be familiar with the integrative servicescape model.

Answered: 1 week ago

Question

Understand the role of corporate design in communications.

Answered: 1 week ago