public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
Account account = new Account(sc.nextInt(), sc.nextInt());
Account.setAnnualInterestRate(sc.nextDouble());
여기서 위 코드 마지막줄의 Account를 account로 고쳐야 되는거 아닌가요? account.setAnnualInterestRate(sc.nextDouble()); 이렇게요