Guest User

Untitled

a guest
Dec 9th, 2024
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.64 KB | None | 0 0
  1. import javax.swing.JOptionPane;
  2. import java.util.Scanner;
  3. import java.util.Random;
  4.  
  5. public class Main {
  6.     public static void main(String[] args) {
  7.  
  8.         Random random = new Random();
  9.         Scanner scan = new Scanner(System.in);
  10.         int number = random.nextInt(10) + 1;
  11.  
  12.         System.out.println("*************************************");
  13.         System.out.println("*|<  Welcome to guess the number! >|*");
  14.         System.out.println("*************************************");
  15.         System.out.println();
  16.         System.out.println("(Hit enter to start)");
  17.         scan.nextLine();
  18.         System.out.println();
  19.         System.out.println("Guess a number between 1 and 10!");
  20.         int guess = scan.nextInt();
  21.         scan.nextLine();
  22.         if (guess == number) {
  23.             System.out.println("That's CORRECT!! My number is " + number + "!");
  24.             System.out.println("(Hit enter to continue!)");
  25.             scan.nextLine();
  26.             System.out.println("You won the BIG prize! 1 Million dollars!!");
  27.             System.out.println("Thanks for playing! and enjoy the prize!!");
  28.  
  29.         } else {
  30.             System.out.println("Sorry that wasn't correct. Good luck next time!");
  31.             System.out.println();
  32.             System.out.println("Do you want to retry? Type Yes or No");
  33.             String retry = scan.nextLine();
  34.             boolean run = true;
  35.  
  36.             while (run == true) {
  37.  
  38.                 if (retry.equalsIgnoreCase("Yes")) {
  39.                     main(null);
  40.                     run = false;
  41.                 } else if (retry.equalsIgnoreCase("No")) {
  42.                     System.out.println("Good luck then. See you later");
  43.                     run = false;
  44.                 } else {
  45.                     while (!retry.equalsIgnoreCase("Yes") && !retry.equalsIgnoreCase("No")) {
  46.                         System.out.println("Please type(Yes Or No)");
  47.                         retry = scan.nextLine();
  48.                         if (retry.equalsIgnoreCase("Yes") || retry.equalsIgnoreCase("No")) {
  49.                             if (retry.equalsIgnoreCase("Yes")) {
  50.                                 main(null);
  51.                                 run = false;
  52.                             } else if (retry.equalsIgnoreCase("No")) {
  53.                                 System.out.println("Good luck then. See you later");
  54.                                 run = false;
  55.  
  56.                             } else {
  57.                                 run = true;
  58.                             }
  59.  
  60.                         }
  61.                     }
  62.                 }
  63.  
  64.             }
  65.  
  66.             scan.close();
  67.  
  68.         }
  69.     }
  70. }
Add Comment
Please, Sign In to add comment