CS 1301 Lab 3

100 Points

The demonstration for team problem 1 DURING LAB is worth 20 points.

Attendance is worth 20 points.

(100 points) Team Problem #1: Calculating charges

Here is a design for a small program that will calculate the charges for customers parking in a commercial parking lot.

Goal:   Calculate the total charge for three customers.

   1. Get needed data from the keyboard, minutes spent on the lot for
	each of three customers.
   2. Get data from the keyboard, rate charged per minute. 
   3. Calculate the charge for each customer and output it.
   4. Calculate and output the total of the three charges.


	The output should look something like:
	Enter the minutes for the first customer: 15
	Enter the minutes for the second customer: 120 
	Enter the minutes for the third customer: 72
	Enter the rate per minute:  0.05
	The charge for the first customer is $0.75
	The charge for the second customer is $6.00
	The charge for the third customer is $3.60
	The total charge is $10.35