5.Assume that a software company sells a product that
retails RM99 per unit.

Quantity
Discount

10-19
20%
20-49
30%
50 and above
40%
Write a pseudocode/flowchart that asks for the number
of units sold and computes the total cost of the purchase
after discounted. (assume the number of unit is > 0).
1
Expert's answer
2014-04-10T10:46:18-0400
out("Please enter the number of units sold:"); in(int numberOfUnits); int discount = 0; if (numberOfUnits > 50) discount = 40; else if (numberOfUnits > 20) discount = 30; else if (numberOfUnits > 10) discount = 20; double total = numberOfUnits * 99 * (100 - discount) / 100; out(total);
Comments
Leave a comment