Feedback for subjective question
Question 1: Write a C++ program that will determine if a departmental store customer has exceeded the credit limit on a charge account.
Program should input the following facts in five variables
Program should input the following facts in five variables
- Account number
- Balance at the beginning of month (Beginning balance)
- Total of all items charged by customer this month (charges)
- Total of all credits (credits)
- Allowed credit limit
Calculate the new balance
New balance = Beginning balance + charges - credits
Determine if new balance exceeds the allowed credit limit. For those customers whose credit limit is exceeded. The program should display the message "Credit Limit exceeded."
Current Answer:
Be the first to post an answer to earn 100CR.