(Credit Limits) Develop a C++ program that will determine whether a department-store customer has exceeded the credit limit on a charge account. For each customer, the following facts are available:
a) Account number (an integer)
b) Balance at the beginning of the month
c) Total of all items charged by this customer this month
d) Total of all credits applied to this customer's account this month
e) Allowed credit limit
The program should use a while statement to input each of these facts, calculate the new balance (= beginning balance + charges – credits) and determine whether the new balance exceeds the customer’s credit limit. For those customers whose credit limit is exceeded, the program should display the customer’s account number, credit limit, new balance and the message “Credit Limit Exceeded.”
Enter account number (or –1 to quit): 100Enter beginning balance: 5394.78Enter total charges: 1000.00Enter total credits: 500.00Enter credit limit: 5500.00New balance is 5894.78Account: 100Credit limit: 5500.00Balance: 5894.78Credit Limit Exceeded.Enter Account Number (or –1 to quit): 200Enter beginning balance: 1000.00Enter total charges: 123.45Enter total credits: 321.00Enter credit limit: 1500.00New balance is 802.45Enter Account Number (or –1 to quit): –1
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.