ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 11 Weeks Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 27 Apr 2017 My Price 8.00

Write a program that inputs the amount of the purchase

I need some help with this code

Write a program that inputs the amount of the purchase and calculates the shipping charge based on the following table:

$0.00 - $250.00: $5.00

$250.01 - $500.00: $8.00

$500.01 - $1,000.00: $10.00

$1,000.01 - $5,000.00: $15.00

over $5,000.00: $20.00

Sample Output from Program:

Enter a purchase amount to find out your shipping charges.

Please enter the amount of your purchase: 234.65

The shipping charge on a purchase of $234.65 is $5.00.

 

Here is the p

Display program information

Prompt the user for the sale amount

If sale amount > $5,000.00

    shipping is $20.00

Else if sale amount > $1,000.00

    shipping is $15.00

Else if sale amount > $500.00

    shipping is $10.00

Else if sale amount > $250.00

    shipping is $8.00

Else if sale amount > $0.00

    shipping is $5.00

Else

    shipping is $0.00

End-If

If shipping is $0.00

    Display "Error incorrect input"

Else

    Display sale amount and shipping charge

End-If

 

Press any key to continue .

Answers

(11)
Status NEW Posted 27 Apr 2017 12:04 AM My Price 8.00

-----------

Not Rated(0)