Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this assignment, you will create a Java program to represent a flight ticket reservation system Necessary functionalities include 1. readUserlnput(): reads in departure and

image text in transcribed

image text in transcribed

In this assignment, you will create a Java program to represent a flight ticket reservation system Necessary functionalities include 1. readUserlnput(): reads in departure and arrival city from user, 2. retrieveFlightFromDatabase(): looks for a match in departure and arrival cities from the database, 3. displayFlights): displays the flight information to the user The database consists of an array of flights, where each flight contains the following information departureCity : String 2. 1. arrivalCity: String 3. departureTime: int (a 4 digit number, e.g. 1500) 4. price : int (in dollars) You are to construct an iterator that will iterate through the database and print out all flights that match the departure and arrival city provided by the user. After that, you will ask the user to select one of the flights. After the user has selected a flight, create an object that represents a flight ticket that has the selected flight schedule. Now ask the user for additional add-ons to the flight ticket 1. extra legroom seats 2. in-flight meals 3. excess baggage. The flight ticket reservation process is then complete Design the system using design pattern(s) that you have learnt in class (you may use more than one design pattern at the same time). Note that in your design you must separate the functionalities, be able to iterate through the database, and be able to easily add any (or all) options to the flight ticket. In your main program file, create a database consisting of only the following three entries 1. Regina to Vancouver, 0900 hrs, $300 2. Regina to Vancouver, 1500 hrs, $350 3. Regina to Toronto, 1300 hrs, $500 and make a query to find a flight from Regina to Vancouver, and then add inflight meals ($10 extra) and excess baggage ($20 extra). Print out the details of the final ticket. Please include comments to explain which design pattern(s) you are using and what are the classes in that design pattern Your output should look as follows: s java A03john123 Enter Departure City: Regina Enter Arrival City: Vancouver Flights found: (1) Regina Vancouver 0900H $300 (2) Regina Vancouver 1500H $350 Which flight do you want? Do you want to add extra legroom seats (Y/N) ? Do you want to add in-flight meals (Y/N) Do you want to add excess baggage (Y/N)? Your final flight information is: Departure City: Regina Arrival City : Vancouver Time 0900H Extra Legroom: N In-flight meals: Y Excess Baggage: Y Total Price : $330 In this assignment, you will create a Java program to represent a flight ticket reservation system Necessary functionalities include 1. readUserlnput(): reads in departure and arrival city from user, 2. retrieveFlightFromDatabase(): looks for a match in departure and arrival cities from the database, 3. displayFlights): displays the flight information to the user The database consists of an array of flights, where each flight contains the following information departureCity : String 2. 1. arrivalCity: String 3. departureTime: int (a 4 digit number, e.g. 1500) 4. price : int (in dollars) You are to construct an iterator that will iterate through the database and print out all flights that match the departure and arrival city provided by the user. After that, you will ask the user to select one of the flights. After the user has selected a flight, create an object that represents a flight ticket that has the selected flight schedule. Now ask the user for additional add-ons to the flight ticket 1. extra legroom seats 2. in-flight meals 3. excess baggage. The flight ticket reservation process is then complete Design the system using design pattern(s) that you have learnt in class (you may use more than one design pattern at the same time). Note that in your design you must separate the functionalities, be able to iterate through the database, and be able to easily add any (or all) options to the flight ticket. In your main program file, create a database consisting of only the following three entries 1. Regina to Vancouver, 0900 hrs, $300 2. Regina to Vancouver, 1500 hrs, $350 3. Regina to Toronto, 1300 hrs, $500 and make a query to find a flight from Regina to Vancouver, and then add inflight meals ($10 extra) and excess baggage ($20 extra). Print out the details of the final ticket. Please include comments to explain which design pattern(s) you are using and what are the classes in that design pattern Your output should look as follows: s java A03john123 Enter Departure City: Regina Enter Arrival City: Vancouver Flights found: (1) Regina Vancouver 0900H $300 (2) Regina Vancouver 1500H $350 Which flight do you want? Do you want to add extra legroom seats (Y/N) ? Do you want to add in-flight meals (Y/N) Do you want to add excess baggage (Y/N)? Your final flight information is: Departure City: Regina Arrival City : Vancouver Time 0900H Extra Legroom: N In-flight meals: Y Excess Baggage: Y Total Price : $330

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Multidimensional Array Data Management In Databases

Authors: Florin Rusu

1st Edition

1638281483, 978-1638281481

More Books

Students also viewed these Databases questions

Question

5.5

Answered: 1 week ago