Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Shipping calculator in C Speedy Shipping Company will ship your package based on the weight and how far you are sending the package, which can

Shipping calculator in C

Speedy Shipping Company will ship your package based on the weight and how far you are sending the package, which can be anywhere in the universe. They will only ship small packages up to 10 pounds. You need to have a program, which will help you determine how much they will charge.

The charges are based on each 500 miles shipped. The mileage should be in whole numbers. They are not prorated, i.e., 600 miles is the same charge as 900 miles; in other words, 600 and 900 miles is counted as 2 segments of 500 miles each.

Here is the table they gave you:

Package weight rate per 500 miles shipped Charge
2 pounds or less $1.50
More than 2 but not more than 6 $3.70
More than 6 but not more than 10 $5.25

Your code needs to validate the input completely, e.g., the weight and mile amounts must be positive. If an input is invalid, e.g., the weight is zero or less, you should display an appropriate, professional error message, e.g., Error: Weight must be greater than zero!, which should be offset and surrounded by white space, so it stands out, and repeat getting that input until valid input is received. Keep in mind, the user will find it annoying if they must enter both the miles and weight at the same time, and only one of them caused an error, or they must reenter already valid data; see the Sample Run. Only if all the input is valid, should the program calculate and display one shipping charge, and pause, but not quit, before proceeding to a new customer.

At this point for the code, you should only solve the problem using what you learned from modules 1 6, i.e., NO arrays, etc. Make sure you divide your program into multiple functions, i.e., each function solves one problem, and main() ties them all together. Also, make sure you follow the Code Conventions and good programming practices, e.g., appropriately initialize variables to zeros, avoid stacked if or if-else constructs unless necessary, dont use break, continue, etc. to get out of a loop, goto, a return statement more than once at the end per function, etc. Your test cases should test the various possibilities, and the limits of the program, which means, you will need to use an appropriate loop, which will ask if you would like to process the next customer or not by asking them to enter an appropriate value. Once there are no more customers to process, the program should display Good-bye! and end.

Hints: You may need to reset any values after you display the answer and before you get the input for the next customer. Big Helpful Hint: For the number of segments formula, you may want to start with integer division, e.g., 1200 miles / 500 miles per segment = 2 segments, and then, expand on that. What do you need to do to the calculation to get the correct number of segments, e.g., > 1 to 500 is 1 segment, 501 to 1000 is 2 segments, 1001 to 1500 is 3 segments, etc. You cannot solve this one with nested if-else constructs; try, pattern analysis.

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

SQL Server Query Performance Tuning

Authors: Sajal Dam, Grant Fritchey

4th Edition

1430267429, 9781430267423

More Books

Students also viewed these Databases questions

Question

1. Select the job or jobs to be analyzed.

Answered: 1 week ago