The No Interest Credit Company provides zero-interest loans to customers. (It makes a profi t by selling advertising space in its monthly statements and selling its customer lists.) Design an application that gets customer account data that includes an account number, customer name, and balance due. For each customer, display the account number and name; then

print the customer’s projected balance each month for the next 10 months. Assume that there is no finance charge on this account, that the customer makes no new purchases, and that the customer pays off the balance with equal monthly payments, which are 10 percent of the original bill.

kjsjad dsld das

To design an application that meets the requirements mentioned, you can use a programming language like Python. Below is an example code that prompts the user to enter the account number, customer name, and balance due. It then calculates and displays the projected balance for the next 10 months based on the given assumptions.

```python
# Prompt user for account data
account_number = input("Enter account number: ")
customer_name = input("Enter customer name: ")
balance_due = float(input("Enter balance due: "))

monthly_payment = balance_due * 0.1

# Display customer account information
print("\nAccount Number:", account_number)
print("Customer Name:", customer_name)

# Print projected balance for the next 10 months
print("\nProjected Balance for the Next 10 Months:")
for month in range(1, 11):
balance_due -= monthly_payment
print("Month", month, ":", balance_due)
```

This code collects the necessary account data from the user, calculates the monthly payment as 10% of the balance due, and then iterates over the next 10 months to calculate and display the projected balance after each payment.

Please note that in this code, we assume that the monthly payments are exactly 10% of the original bill, and no new purchases are made. You may need to modify the code if different assumptions are required.