Write a java program to simulate a pick 3 4 or 5 lottery


Assignment:

Write a Java program to simulate a pick 3, 4 or 5 lottery drawing. A lottery game of this type will draw values between 0 and 9. You should use the Math.Random() or the java.util.Random() class to generate the values in the lottery drawing. The program should prompt the user for which lottery game they want to play (pick 3 or pick 4 or pick 5). The program should also ask how many times they want to play the game. The output should show the numbers picked for each game and it should sum each individual number selected into a total of all numbers. For example, if a user of the program made a selection to randomly draw 2 three digit numbers (as in the example shown below) the sum would be 3 + 5 + 0 + 1 + 0 + 0 = 9. Here is an example of what a run of your code should produce.

  1. Do you wish to make lottery game selections? Y or y for yes, N or n for no Input from keyboard - Y
  2. Which lottery game do you want to play (Enter 3 for pick-3, 4 for pick-4, 5 for pick-5) Input from keyboard - 3
  3. How many games would you like to play? Input from keyboard - 2
  4. Thank you! The numbers randomly generated were: 350 100
  5. The sum of each individually selected number is 9
  6. Be sure to use at least two classes and at least one constructor method in your answer. Also present runs for all three types of games. Be sure to have loop logic that allows the user to choose to stop playing.

Here's what I created but it's not complete, I need to split it into two classes and have contractor as well as have a loop logic.

import java.util.Scanner;

public class LotteryGame {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

int lotteryGaming;

int noOfGame;

int randomNo;

int lotteryNumber;

int sum = 0;

System.out.print("Which lottery game do you want to play (Enter 3 for pick-3, 4 for pick-4 or 5 for pick-5? ");

lotteryGaming = scanner.nextInt();

System.out.print("How many games would you like to play? ");

noOfGame = scanner.nextInt();

System.out.println("Thank you! The numbers selected were: ");

for (int i = 0; i < noOfGame; i++) {

lotteryNumber = 0;

for (int j = 0; j < lotteryGaming; j++) {

randomNo = (new java.util.Random()).nextInt(10);

lotteryNumber = (lotteryNumber * 10) + randomNo;

System.out.print(randomNo + " ");

sum += randomNo;

}

System.out.println();

}

System.out.println("The sum for all numbers picked was: " + sum);

scanner.close();

}

}

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: Write a java program to simulate a pick 3 4 or 5 lottery
Reference No:- TGS01466872

Now Priced at $30 (50% Discount)

Recommended (90%)

Rated (4.3/5)