CMIS 141 Introductory Programming Final Project – U.S. Crime Statistics
University of Maryland University College Introductory Programming CMIS 141, 7981 Final Project – U.S. Crime Statistics Student: Professor: Rebecca Rowson 25 April 2017 2 1 Assignment CMIS 141 Homework 4 1.1 Before attempting this project, be sure you have completed all of the reading assignments, hands-on labs, discussions, and assignments to date. 1.2 Design a Java application that will read a file containing data related to the US. Crime statistics from . The description of the file is at the end of this file. 1.2.1 The application should provide statistical results on the data including: a. Population growth in percentages from each consecutive year (e.g. calculation is (( - )/)*100 = 0.9512%, would be (( - )/)*100 = 0.9229%) b. Years where the maximum and minimum Murder rates occurred. c. Years where the maximum and minimum Robbery rates occurred. 1.2.2 The following are some design criteria and specific requirements that need to be addressed: a. Use command line arguments to send in the name of the US Crime Data file. b. You should also use Java classes to their full extent to include multiple methods and at least two classes c. You are not allowed to modify the C Statistic data file included in this assignment. d. Use arrays and Java classes to store the data. (Hint: You can and should create a USCrimeClass to store the fields. You can also have an Array of US Crime Objects.) e. You should create separate methods for each of the required functionality. (e.g. getMaxMurderYear() will return the Year where the Murder rate was highest. ) f. A user-friendly and well-organized menu should be used for users to select which data to return. A sample menu is shown in run example. You are free to enhance your design and you should add additional menu items and functionality. g. The menu system should be displayed at the command prompt, and continue to redisplay after results are returned or until Q is selected. If a user enters an invalid menu item, the system should redisplay the menu with a prompt asking them to enter a valid menu selection h. The application should keep track of the elapsed time (in seconds) between once the application starts and when the user quits the program. After the program is exited, the application should provide a prompt thanking the user for trying the US Crime Statistics program and providing the total time elapsed. i. Hint: When reading the Crimes file, read one line at a time (See ReadE) and then within the loop parse each line into the USCrimeClass fields and then store that USCrimeClass Object into an array. Note you can use S(“,”) to split the CSV line into a the fields for setting the USCrimeClass Object.
Escuela, estudio y materia
- Institución
- University Of Maryland - University College
- Grado
- CMIS 141
Información del documento
- Subido en
- 2 de septiembre de 2021
- Número de páginas
- 45
- Escrito en
- 2021/2022
- Tipo
- Examen
- Contiene
- Preguntas y respuestas
Temas
-
cmis 141
-
final project – us crime statistics
-
cmis 141 final project – us crime statistics