Question: Create a Java program to store the team standings for a NCAA MAC Conference game of your choice. Example: Last year's mid-season, in-conference games played

 Create a Java program to store the team standings for a

Create a Java program to store the team standings for a NCAA MAC Conference game of your choice. Example: Last year's mid-season, in-conference games played by the MAC (Mid-American Conference) NCAA football teams, utilizing the following 6 parallel arrays: college, teamName, state, div, win, loss Create the parallel arrays with the appropriate data types Populate the arrays with the following data: Output: 1. Generate a report of the entire data set as shown above, formatted into 7 columns, adding a calculated column (the 7^th column) with the win percentage (wins/total games) stored in a variable winPct. College Team Name State Division Win Loss Win % Then, use methods and the same report format to generate 6 reports as follows. Create additional functions where you pass the array and any other parameter(s). 2. Display only the teams from MI 3. Display only the teams from OH 4. Display only the teams whose state starts with some letter of your choice 5. Display only the West division teams 6. Display the teams with exactly 3 wins 7. Display the team with the highest win percentage (find max of winPct) This will require repeating the looping statement to generate the first list 4 more times, but using an if statement within the loop to determine whether or not to print the team based on the criteria above

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!