Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import javax.swing.JOptionPane;
- import java.util.Scanner;
- import java.util.Random;
- public class Main {
- public static void main(String[] args) {
- Random random = new Random();
- Scanner scan = new Scanner(System.in);
- int number = random.nextInt(10) + 1;
- System.out.println("*************************************");
- System.out.println("*|< Welcome to guess the number! >|*");
- System.out.println("*************************************");
- System.out.println();
- System.out.println("(Hit enter to start)");
- scan.nextLine();
- System.out.println();
- System.out.println("Guess a number between 1 and 10!");
- int guess = scan.nextInt();
- scan.nextLine();
- if (guess == number) {
- System.out.println("That's CORRECT!! My number is " + number + "!");
- System.out.println("(Hit enter to continue!)");
- scan.nextLine();
- System.out.println("You won the BIG prize! 1 Million dollars!!");
- System.out.println("Thanks for playing! and enjoy the prize!!");
- } else {
- System.out.println("Sorry that wasn't correct. Good luck next time!");
- System.out.println();
- System.out.println("Do you want to retry? Type Yes or No");
- String retry = scan.nextLine();
- boolean run = true;
- while (run == true) {
- if (retry.equalsIgnoreCase("Yes")) {
- main(null);
- run = false;
- } else if (retry.equalsIgnoreCase("No")) {
- System.out.println("Good luck then. See you later");
- run = false;
- } else {
- while (!retry.equalsIgnoreCase("Yes") && !retry.equalsIgnoreCase("No")) {
- System.out.println("Please type(Yes Or No)");
- retry = scan.nextLine();
- if (retry.equalsIgnoreCase("Yes") || retry.equalsIgnoreCase("No")) {
- if (retry.equalsIgnoreCase("Yes")) {
- main(null);
- run = false;
- } else if (retry.equalsIgnoreCase("No")) {
- System.out.println("Good luck then. See you later");
- run = false;
- } else {
- run = true;
- }
- }
- }
- }
- }
- scan.close();
- }
- }
- }
Add Comment
Please, Sign In to add comment