Homework 3: Muni ridership calculator

Objective: To perform a simple calculation based on user input

Write a program that asks the user for survey data about Muni riders, and outputs a summary of that data. Your program should first ask the user which Muni line was surveyed. Then the program asks the user how many days the survey was conducted, and then enter the number of riders that were counted. Your program divides the number of riders by the number of days and outputs the resulting average daily ridership. The number of digits of precision is not important.

Your program should behave like shown below (It should not output "Running the program a second time". That's just my way of telling you I'm showing sample output from two different times of running the same program.)

Sample Output:

Welcome to the Muni Ridership Calculator.
Which Muni line did you survey? K Ingleside
How many days did you survey it? 5
How many rider did you count? 123456
According to your survey, an average of 24691.2
people rode the K Ingleside per day.
----- Running the program a second time ------
Welcome to the Muni Ridership Calculator.
Which Muni line did you survey? 24 Divisadero
How many days did you survey it? 3
How many rider did you count? 10000
According to your survey, an average of 3333.3333333333335
people rode the 24 Divisadero per day.

Rules