www. tutorialoutlet. com
www. tutorialoutlet. com
CS210 Introduction to Programming Java Programming Assignment 8: Array Implementation NOTE: This assignment will be more challenging than the previous assignments, so make sure to start early and allocate enough time to complete it, including time you might need to seek any necessary help. Since this is the last program, the program may not be submitted more than 1 day late! Problem Summary A local city would like you to write a program to help them analyze data on speeding tickets. City police have collected information about the speeding violations. They store data about each ticket issued during a one week period in a text data file. Data collected for each ticket includes the vehicle license plate number, the speed limit, and the clocked speed. From past data, the police department knows that it will not issue more than 200 tickets per week. You may assume all data in input data file is valid data( i. e. formatted correctly), but you must verify that the file exists( i. e. can be opened). If the file does not exist, the program will loop until you enter the filename for a file that can be opened. Sample input data file lines: BBB222 50 60 XYZ123 40 45 A1B2C3 30 51 The police department would like you to write a program to read the file,