私は宿題のための非常に基本的な銀行口座プログラムを作成します。預金、撤退、および利息の追加後に合計残高を与えるプログラムの代わりに、預金額を出力するだけです。撤回した金額です。銀行口座プログラムロジックエラー
public class BankAccount
{
public BankAccount(double initBalance, double initInterest)
{
balance = 0;
interest = 0;
}
public void deposit(double amtDep)
{
balance = balance + amtDep;
}
public void withdraw(double amtWd)
{
balance = balance - amtWd;
}
public void addInterest()
{
balance = balance + balance * interest;
}
public double checkBal()
{
return balance;
}
private double balance;
private double interest;
}
テストクラス
public class BankTester
{
public static void main(String[] args)
{
BankAccount account1 = new BankAccount(500, .01);
account1.deposit(100);
account1.withdraw(50);
account1.addInterest();
System.out.println(account1.checkBal());
//Outputs 50 instead of 555.5
}
}
変数を正しく初期化していません。 'balance = initBalance;が必要です。興味= initInterest'です。 –
説明なしの下投票は役に立ちません。また、新しいユーザーにヘルプやアドバイスを求めたり求めたりすることを妨げることもあります。私は 新しいユーザーの下投票の質問はできるだけ避けるべきだと思います。それらの私は反対をお勧めします:ダウン投票なしの説明。 – c0der