Learn How to Program in Cby Dr. Kristin Switala
|
|
Projects: Functions (b)
Instructions: Create a C program that runs successfully for each project below.
Project 1
Use the Shipping program in the Lesson. Add these things to the program:
- the price of each book is $39.95
- write a function to calculate the tax (use 0.08)
- calculate the total due = price + tax + shipping
- print the bill like this (I've pretended that the viewer ordered 12 books):
Books Ordered: 12
|
Price:
Tax:
Shipping:
Total Due:
|
$479.40
$38.35
$15.00
$532.75
|
|
|