Нет ошибок сборки, неправильный вывод

#c

#c

Вопрос:

Мне пришлось написать эту программу для моего класса C , и я не думал, что у меня возникают какие-либо проблемы, но каждый раз, когда я запускаю программу, я получаю тарабарщину в качестве вывода. Я вошел в программу (Visual Studios 2010 — мой компилятор) и обнаружил, что здесь программа идет не так

 Account::Account(double Balance, double InterestRate1, double InterestRate2)
{
balance = balance;
interest_rate1 = InterestRate1;
interest_rate2 = InterestRate2;
Payment();
}
 

Он устанавливает баланс как 6 (первое число в файле, из которого я читаю) и процентные ставки, но как только вы переходите к следующему шагу, все идет не так. почему?

 #include <iostream>
#include <fstream> 
#include <iomanip> 
using namespace std;

ofstream     outputfile("output.txt");    

const int    MAX_FILE_NAME = 35;           
const double INTEREST_RATE1 = 0.015;
const double INTEREST_RATE2 = 0.010;
const double LEVEL_ONE_BALANCE = 1000.00;
const double MINIMUM_PAYMENT = 10.00;
const double MINIMUM_PAYMENT_PERCENT = 0.10;

class Account
{
public:
Account( double Balance, double InterestRate1, double InterestRate2);
Account( );
double Payment();
double InterestDue();
double TotalAmountDue();
void output(ostream amp;out); 

private:
double balance;
double interest;
double payment;
double interest_rate1;
double interest_rate2;
double total_amount_due;
};

void open_input(ifstreamamp; input, char name[]); 
void process_file(ifstreamamp; input);            

int main() 

{  char again;             
   char file_name[MAX_FILE_NAME   1]; 
   ifstream input_numbers;            

   cout << "This program computes the interest due, total amount due,n"
        << "and the minimum payment for a revolving credit account.n" << endl;
   system("pause"); 

   do 
   {  
      system("cls");                           
      open_input(input_numbers, file_name);    
      process_file(input_numbers);             
      input_numbers.close();                   

      cout << "nDo you want to process another file (Y/N)? ";
      cin >> again;
      cin.ignore(256, 'n'); 

   } 
   while ( again == 'y' || again == 'Y'); 

   cout << "nEnd of Program!" << endl;
   outputfile << "nnThanks for using CreditCalculator!f"; 
   outputfile.close();

   return 0; 
}  



void open_input(ifstreamamp; input, char name[]) 
{  int count = 0;            
   do
   {  count  ;
      if (count != 1)
      {  cout << "naInvalid file name or file does not exist. Please try again." 
              << endl;
      }
      cout << "nEnter the input file name (maximum of " << MAX_FILE_NAME
           << " characters please)n:> ";
      cin.get(name, MAX_FILE_NAME   1);
      cin.ignore(256, 'n');           
      input.clear();                   
      input.open(name,ios_base::in); 
   } while (input.fail() );            
} 

void process_file(ifstreamamp; input) 
{  double value;              
   Account thisAccount;             
   while (input >> value)     
   {
      thisAccount = Account(value, INTEREST_RATE1, INTEREST_RATE2);
      thisAccount.output(cout); 
          thisAccount.output(outputfile);   
   }
} 

// Account Class

Account::Account(double Balance, double InterestRate1, double InterestRate2)
    {
balance = balance;
interest_rate1 = InterestRate1;
interest_rate2 = InterestRate2;
Payment();
    }

Account::Account()
{
    balance = 0;
}
double Account::InterestDue()
{ 
    return interest;
}
double Account::TotalAmountDue()
{
    return total_amount_due;
}
void Account::output(ostream amp;out) // Print values on output stream out();
{
   out << "nnBalance   : $" << setw(8) << balance << endl;
   out <<     "Payment   : $" << setw(8) << payment << endl;
   out <<     "Interest  : $" << setw(8) << interest << endl;
   out <<     "Total due : $" << setw(8) << total_amount_due << endl;

}
double Account::Payment()
{

double newbalance;

if ( balance > LEVEL_ONE_BALANCE)
     interest = (balance - LEVEL_ONE_BALANCE) * interest_rate2  
                         LEVEL_ONE_BALANCE * interest_rate1; (this goes up there ^)
else
     interest = balance * interest_rate1;
newbalance = balance   interest;

payment = newbalance * MINIMUM_PAYMENT_PERCENT;

if (newbalance < MINIMUM_PAYMENT_PERCENT)
     payment=newbalance; 
else
     if ( payment < MINIMUM_PAYMENT)
          payment=MINIMUM_PAYMENT;

return payment;
}
 

Комментарии:

1. Уильям, не меняй радикально свой вопрос, как только на него будет дан ответ. Вы можете внести небольшие изменения для уточнения или обновления, если у вас есть дополнительные (небольшие) проблемы для решения.

Ответ №1:

В Account::Account(двойной баланс, двойной интерес1, двойной интерес2) вы говорите

 balance = balance;
 

Это должно быть:

 balance = Balance;
 

Комментарии:

1. Большое вам спасибо, я бы никогда не заметил эту опечатку. Я внес ваше и Als исправление, но я все еще получаю еще одно мусорное значение для total_amount_due, у вас есть какие-нибудь идеи? Я знаю, что я немного жадный, но я отлаживал это в течение 6 часов и начинаю сходить с ума, ха-ха..