I\'m having trouble with some homework and here is the problem The Dash Cell Pho
ID: 3649609 • Letter: I
Question
I'm having trouble with some homework and here is the problem The Dash Cell Phone Company charges customers a basic rate of $5 per month to send text messages. Additional rates are as follows: - The first 60 messages per month, regardless of message length, are included in the basic bill. - An additional five cents is charged for each text message after the 60th message, up to 180. - An additional 10 cents is charged for each text message after the 180th message. Federal, state, and local taxes add a total of 12% to each bill. Design a flowchart or pseudocode for the following: a. A program that accepts the following data about one customerExplanation / Answer
* Read Customer_area with robust input for a positive integer with three digits
* Read Customer_phone with robust input a positive integer with seven digits
* Read Customer_text with robust input for positive integers
* print "Basic rate for subscription: $5 per month", set Customer_bill to 5
* select case of
: Customer_text <= 60 print "No extra charge for text messages"
: Customer_text <= 180 print "(Customer_text - 60) * 0.05 extra for text messages", add (Customer_text - 60) * 0.05 to Customer_bill
: Customer_text > 180 print "$6 extra for text messages from 60 - 180, (Customer_text - 180) * 0.10 extra for text messages beyond 180", add (Customer_text - 180) * 0.10 to Customer_bill, add 6 to Customer bill
* print "Bill before taxes is Customer_bill"
* Customer_finalbill = Customer_bill * 1.12
* print "Bill after 12% federal, state and local tax is Customer_finalbill"
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.