Question: can someone help fix this code for me. trying to get the Class to connect to the main properly Cannot resolve symbol 'SavingsAccountClass' :13 Cannot
can someone help fix this code for me. trying to get the Class to connect to the main properly





Cannot resolve symbol 'SavingsAccountClass' :13 Cannot resolve symbol 'SavingsAccountClass' :13 Cannot resolve symbol 'SavingsAccount' :14 Typo: In word 'montly' :21 Typo: In word 'Withdrawl' :22 1 usage 1 related problem public class SavingsAccount \{ 6 usages private double accountBalance; 3 usages private final double annualinterestRate; 4 usages private double lastAmountofinterestEarned; no usages 1 related problem public SavingsAccount(double balance, double interestrate) \{ accountBalance = balance; annualinterestRate = interestRate; lastAmountofinterestEarned =0.0; \} 1 usage public void withdraw(double withdrawAmount) \{ accountBalance -= withdrawAmount; \} 1 usage public void deposit(double depositAmount) \{ accountBalance += depositAmount; \} 1 usage public void addInterest() \{
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
