Apply discount algorithm
Defining the problem:
The problem is that we need to find the cost of sending a parcel to someone and calculating the discount if the cost is more than $100.
Defining the inputs:
The inputs are; ItemWeight, CostPerKilo
Defining the outputs:
The outputs are; CostofSendingParcel, CostAfterDiscount
Define the processing:
1. Get the item weight
2. Get the cost per kilo
3. Calculate the cost of sending a parcel
4. If the cost of sending a parcel is less than $100, display the cost of sending a parcel
5. Else, apply a 10% discount
6. Display the cost after discount
Pseudocode
Calculate price of sending parcel
Prompt user for ItemWeight, CostPerKilo
Get ItemWeight, CostPerKilo
CostofSendingParcel = ItemWeight * CostPerKilo
If CostofSendingParcel < 100
Display CostofSendingParcel
Else
CostAfterDiscount = CostofSendingParcel * 0.9
Display CostAfterDiscount
End If
End
No comments:
Post a Comment