Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Computer Science I: Lab 4 due Friday, February 23, 2018 This lab is our introduction to conditional statements. We will write a small program for

Computer Science I: Lab 4

due Friday, February 23, 2018

This lab is our introduction to conditional statements.

We will write a small program for Fordham Airlines to allow the customer to purchase flights, calculating how much the customer owes, taking payment, and calculating change.

The airline sells tickets for travel during two time periods: daytime (departing 5am-7pm) and nighttime (departing 7pm-5am).

The airline sells tickets for three destinations: Chicago, Miami, and Portland.

The airline sells tickets for two types of days: weekday and weekend (you could use 'D' for weekday and 'E' for weekend).

Pricing information:

For Miami travel, flight prices are as follows:

For weekday travel: $150 during the daytime, $100 during the nighttime

For weekend travel: $180 during the daytime, $120 during the nighttime

Chicago flights cost half the price of Miami flights, and Portland flights cost twice as much as Miami flights. For example, a Portland weekday flight during the nighttime is $200. A Chicago weekend flight during the daytime is $90.

Your program is to work as follows:

Display a welcome message (e.g., Welcome to Fordham Airlines!)

Prompt the user to input his/her destination: Chicago, Miami, or Portland (I recommend you use letters to represent each input)

Prompt the user to input what time s/he wishes to travel (in army time, e.g., 800 for 8am or 1530 for 3:30pm)

Prompt the user to input what type of day (s) s/he is traveling: Weekday or Weekend (I recommend you use letters to represent each input)

Report the price per ticket of the specified type

Prompt the user for the number of tickets to be purchased

If the number of tickets is fewer than 0, report that the number of tickets ordered is invalid and the order has been cancelled, then exit; otherwise:

Compute and display the total amount due (no sales tax this time!)

Prompt the user to enter the amount s/he is paying

If the amount paid is less than the amount due, report that the amount paid is too little and the order has been cancelled, then exit; otherwise:

Display change and confirm the order has been placed

Two example executions of the ticket program are given at the end of this document.

For this lab you must use:

At least one if-elsestatement

At least one switchstatement

At least one constant variable (for example: const int a=42;)

Good coding style (comments, spacing, good variable names) --- it counts for 30% of your grade!

I recommend you look over the programming advice I have placed on our lab website as well, to help as you write and debug. As you write your program, it is wise to make sure you can make a program that performs the first 4 steps before you work on step 5, that you can make a program that performs the first 5 steps before you work on step 6 and so on.

Example execution:

> ./fordhamAir.out

Welcome to Fordham Airlines

What is your destination? ([C]hicago, [M]iami, or [P]ortland) P

What time will travel? (Enter time between 0-2359) 450

What type of day are you traveling? (week[E]nd or week[D]ay) E

Each ticket will cost: $240.00

How many tickets do you want? 2

You owe $480.00

How much will you pay? 100.00

That is too little! No tickets ordered.

Another example execution

> ./fordhamAir.out

Welcome to Fordham Airlines

What is your destination? ([C]hicago, [M]iami, or [P]ortland) M

What time will travel? (Enter time between 0-2359) 1345

What type of day are you traveling? (week[E]nd or week[D]ay) D

Each ticket will cost: $150.00

How many tickets do you want? 3

You owe $450.00

How much will you pay? 500.00

You will get $50.00 in change.

Your tickets have been ordered!

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

101 Database Exercises Text Workbook

Authors: McGraw-Hill

2nd Edition

0028007484, 978-0028007489

More Books

Students also viewed these Databases questions

Question

Determine the domains of the following functions. f(x)= 1 x(x + 3)

Answered: 1 week ago