Construct a solution algorithm for the following programming problems. Your solution should contain:
• a defining diagram
• a list of control structures required
• a pseudocode algorithm
• a desk check of the algorithm.
Design an algorithm that will read a file of customer records showing the total amount owing on his or her credit card, and produce a report showing the customer’s minimum amount due. Each customer record contains the customer’s number, name, address and postcode, and total amount owing. The minimum amount due is calculated on the total amount owing, as follows:
If the total amount owing is less than $5.00, the total amount owing becomes the minimum amount due. If the total amount owing is greater than $5.00, the minimum amount due is calculated to be one-quarter of the total amount owing, provided this resulting amount is not less than $5.00. If the resulting amount is less than $5.00, the minimum amount due is $5.00.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.