Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Bowling involves 10 frames. Each frame starts with 10 pins. The bowler has two throws to knock all 10 pins down. The total score
Bowling involves 10 frames. Each frame starts with 10 pins. The bowler has two throws to knock all 10 pins down. The total score is the sum of pins knocked down, with some special rules For the first 9 frames: If all 10 pins are knocked down on a frame's first throw (a "strike"), that frame's score is the previous frame plus 10 plus the next two throws. (No second throw is taken). If all 10 pins are knocked down after a frame's second throw (a "spare), that frame's score is the previous frame plus 10 plus the next throw. In the 10th frame, if the bowler's first throw is a strike, or the first two throws yields a spare, the bowler gets a third throw. The 10th frame's score is the previous frame's score plus the pins knocked down in the 10th frame's two or three throws. Given integers represents all throws for a game, output on one line each frame's score followed by a space (and end with a newline). Note that the number of throws may be as few as 11 (strikes in first 9 frames, and no strike/spare in 10th frame), or as many as 21 (2 throws in first 9 frames, then 3 in 10th). For simplicity, the input will always have 21 integers. If the game ended with fewer than 21 throws, the remaining integers will be 0's and can be ignored. Ex: A perfect game is one where every throw is a strike. The 21 input integers will be: 10 10 10 10 10 10 10 10 10 10 10 10 0 0 0 0 00000. The output will be: 30 60 90 120 150 180 210 240 270 300. Hints: A first for loop should just read in the 21 scores in the first array. A second for loop should fill the second array's first 9 elements (first 9 frames). Additional code should compute the 10th frame, which is unique. LAB ACTIVITY 5:20.1: PRACTICE: Arrays*** Bowling score 1 import java.util.Scanner; 3 public class Main ( 10 public static void main(String[] args) { Scanner scnr = new Scanner(System.in); /Type your code here. / Main.java 0/4 Load default template.... Traversing an array to find the max (or min) is common. Given an array of integers, output the maximum integer found in the array. If the input is 438 2 6, the output is 8 Hints: Declare a variable named maxitem to hold the max value seen so far. Update that value if you ever see a larger value. Initialize that variable to any element's value, NOT to 0. LAB ACTIVITY 1 import java.util.Scanner; 2 3 public class Main ( 7 5.21.1 PRACTICE Arrays*: Find max 9 10 11 12 13 14 15 16 17 public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int numitems; int curritem; int i; // Get items numItems scnr.nextInt(); int[] listItems new int[numitems]; for (i = 0; i
Step by Step Solution
★★★★★
3.46 Rating (156 Votes )
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started