DEVRY CIS 170 Entire CourseDEVRY CIS 170 Entire Course DEVRY CIS 170 Entire Course | Page 3

Save your program by clicking File on the menu bar and then clicking Save Program . cpp , or by clicking the Save button on the toolbar , or Ctrl + S . Step 5 : Build Solution To compile the program , click Debug and then Build solution ( F7 ). You should receive no error messages . If you see some error messages , check the code above to make sure you didn ’ t key in something wrong . Once you make your corrections to the code , go ahead and click Build >> Build Solution again . Step 6 : Execute the Program Once you have no syntax errors , to execute or run your program , click Debug on the menu bar , and then click Start Debugging . Step 7 : Capture the Output Capture a screen print of your output . ( Do a PRINT SCREEN and paste into an MS Word document .) Copy your code and paste it into the same MS Word document that contains the screen print of your output . Save the Word Document as Lab02A _ LastName _ FirstInitial . END OF PART A Part B : Calculate Shipping Charge Step 1 : Requirements 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 . Press any key to continue . . . Step 2 : Pseudocode Using the pseudocode below , write the code that will meet the requirements . 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