Description
Problem Description: A bowling team consists of five players. Each player bowls three games as shown below. For each game, a player get a score that is between 1 and 100 1st player nd player 3rd player 4th player 5th player Game1 score score score score Game 2 score score score score score Game 3 score Average
Write a Java program that uses a nested for loop to generate the above table. Use a random function to fill each cell with a random score an integer between 1 and 100 Your program should compute and display the score table and an average score for each bowler.
Essentially, your program should generate a table similar this one: 98 63 78 42 67 85 46 79 65 53 68 73 20 65.0 72.7 72.0 65.7 44.0 NOTE: . To see how to use the random function: refer to RandomDemo.java and Dice.java sample codes on page 176 and 176, respectively, of Big Java: Early Objects eBook.