Please make this all in one class : Exception Handling Most of us have played th
ID: 3848479 • Letter: P
Question
Please make this all in one class :
Exception Handling
Most of us have played the "high-low" guessing game wherein one player picks a number and the other player tries to guess what the number is; in this game, if the guessing player guesses less than the number, then the other player responds "too low," and if the player guesses more than the number, then the other player responds "too high." This keeps going until the guessing player correctly guesses the number.
Your task in this assignment is to implement such a guessing game using exceptions. Implement an exception-handling console application with the following:
Program generates random number that user tries to guess
User enters guess
Program generates tooHigh, tooLow or correct exception
Exception handler prints appropriate response to user and repeats b-d until correct guess
Again, please in only one class
Explanation / Answer
// use the below sample code.
// you have not mentioned which language to use the program. I have written program in java.
import java.util.Random;
import java.util.Scanner;
public class guess {
public static void main(String[] args) {
Random random = new Random();//random number to guess
Scanner scanner = new Scanner(System.in);//reading input
int number = random.nextInt(100);//random number limit, you can change accordingly
int guess = -1;
while (guess!=number) {
System.out.print("Enter guessing number");
guess = scanner.nextInt();
if (guess<number) {
System.out.println("Too low");
} else if (guess>number) {
System.out.println("Too high");
} else {
System.out.println("Correct, the number was " + number);
}
}
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.