Help pleas

trying to code this
The No Interest Credit Company provides zero-interest loans to customers. (It makes a profit 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.

Here is what I have so far (and its not printing out my output)

#include <iostream>
using namespace std;


int main ()
{

double account_Number,remaining_Balance,monthly_Balance,month=1, original_bill,costumer_Name;



cout<<"Enter the account number: ";
cin>>account_Number;
cout<<"Enter the name of the costumer: ";
cin>>costumer_Name;
cout<<"Enter the original balance : ";
cin>>original_bill;

while (month<11);
{
monthly_Balance=original_bill*.10;

remaining_Balance=remaining_Balance-monthly_Balance;

cout<<"For month"<<month<<" :"<<endl;
cout<<"Your Monthly Balance is:"<<monthly_Balance<<endl;
cout<<"Your Remaining Balance is:"<<remaining_Balance<<endl;
month=month+1;
}

system ("pause");
return 0;
}
and its not printing out my output
The reason for this is the ; after the while:

while (month<11); // <-- remove the ;
Topic archived. No new replies allowed.