Design, implement and test a Java application that will read a file containing d
ID: 3673628 • Letter: D
Question
Design, implement and test a Java application that will read a file containing data related to the passengers on the Titanic. The description of the file is shown below. The application should provide statistical results on the passengers including:
a. Total number of passengers on the Titanic
b. Percentage of passengers who perished on the Titanic
c. Percentage of Passengers who survived the sinking of the Titanic
d. Percentage passengers who survived the sinking of the Titanic as a function of the passenger class (e.g. 1,2,3)
e. A list of the names of passengers who were less than 10 years old who perished on the Titanic
f. The count of the number of passengers as a function of the first letter of their last name. (e.g., A: 13, B:33 …)
g. At least one additional statistical results you add to enhance the functionality
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 Titanic file.
b. Use a 2D array to store the Titanic data. (Hint: You will probably need to store the array as String values and then convert to other types as needed since some data is null)
c. You should create at least 2 Java classes – Titanic and TestTitanic. You are welcome to create additional classes if you want to further separate the functionality.
d. You should create separate methods for each of the required functionality. (e.g. getTotalPassengers() will return the total number of passengers on the Titanic.)
e. 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.
f. 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
g. 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 Titanic program and providing the total time elapsed.
Please Use eclipse and provide a lot of comments. esspically on how to run the program.
Explanation / Answer
package titanic;
import java.io.*;
import java.util.Scanner;
public class Titanic
{
private static final int X = 1309;
private static final int Y = 6;
public String[][] PassengerData(String fileName) throws IOException
{
Scanner s = null;
try
{
s = new Scanner(new BufferedReader(new FileReader(fileName)));
String[][] passengerData = new String[X][Y];
for(int i = 0; i < passengerData.length; i++)
{
String line = s.nextLine();
String[] tokens = line.split("[ ,]");
for(int j = 0; j < passengerData.length; j++)
{
passengerData[j] = s.next();
}
}
return passengerData;
}
finally
{
System.out.println("Exception found in PassengerData.");
s.close();
}
}
}
package titanic;
import java.util.Scanner;
import java.io.*;
public class TestTitanic
{
public static void main(String[] args) throws IOException
{
long startTime = System.currentTimeMillis();
long stopTime = 0;
String fileName = '"' + args[0] + '"';
System.out.println(fileName);
Titanic titanic = new Titanic();
PrintWriter pw = null;
try
{
File f = new File("Users/Solidkrieger/Documents/UMUC Fall/INTRODUCTION TO PROGRAMMING/Week 8/Final Project/Titanic Statistic.text");
pw = new PrintWriter(f);
pw.println("Titanic Statistic.text");
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
pw.close();
}
try
{
titanic.PassengerData(fileName);
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println("*******Welcome to the Titanic Statistical "+ "Application******* ");
Scanner s = new Scanner(System.in);
String choice = "";
while(choice != "Q")
{
System.out.println("Enter the number of the question you want "+ "answered. Enter ?Q? to quit the program: ");
System.out.println("1. How many passengers were on the Titanic?");
System.out.println("2. What percentage of passengers perished on "+ "the Titanic?");
System.out.println("3. What percentage passengers survived the "+ "sinking of the Titanic?");
System.out.println("4. What percentage of passengers survived for "+ "each of the three classes?");
System.out.println("5. What percentage of passengers survived as a "+ "function of gender?");
System.out.println("6. What specific passengers paid more than $200 "+ "for their tickets?");
System.out.println("7. What specific passengers who were less than "+ "10 years old perished on the titanic?");
System.out.println("8. What specific passengers who were less than "+ "10 years old survived the sinking of the titanic?");
System.out.println("9. For each letter in the alphabet, how many "+ "passengers last names started with that letter?");
System.out.println("Q. Quit the program");
System.out.print("Enter your selection: ");
choice = s.next();
switch(choice)
{
case "1":
break;
case "2":
break;
case "3":
break;
case "4":
break;
case "5":
break;
case "6":
break;
case "7":
break;
case "8":
break;
case "9":
break;
case "Q":
System.out.println("Thank you for trying the Titanic"+ " Program");
stopTime = System.currentTimeMillis();
System.out.println("Elapsed time in seconds was: " +((stopTime - startTime) / 1000));
System.exit(0);
break;
default:
System.out.println("Please enter a proper value.");
break;
}
}
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.