这就是我正在使用的。这是一个月供贷款计算器。我不断收到错误消息“方法monthlyPayment (double, int, int) 未定义类型Assignment 8。” 此错误显示在 main 方法中。错误在第 27 行。
班级
public class LoanCalc {
public static double monthlyPayment(double amountBorrowed, int loanLength, int intRate) {
double principal;
double interestRate;
double monthlyPayment;
principal = amountBorrowed;
interestRate = intRate / 100 / 12;
monthlyPayment = (interestRate * principal) /
(1- Math.pow((1 + interestRate) , - loanLength * 12 ));
return monthlyPayment;
}
}
主要方法
1 import java.util.Scanner;
2
3 public class Assignment8 {
4
5 public static void main(String[] args) {
6
7 Scanner kbd = new Scanner(System.in);
8
9 System.out.println("Enter the amount borrowed: ");
10 double amountBorrowed = kbd.nextDouble();
11
12 System.out.println("Enter the interest rate: ");
13 int intRate = kbd.nextInt();
14
15 System.out.println("Enter the minimum length of loan: ");
16 int minLength = kbd.nextInt();
17
18 System.out.println("Enter the maximum length of loan: ");
19 int loanLength = kbd.nextInt();
20 while (loanLength < minLength) {
21 System.out.println("Invalid input: Input must be greater than 22 minimum length of loan");
23 System.out.println("Enter the maximum length of loan: ");
24 loanLength = kbd.nextInt();
25 }
26
27 double payment = monthlyPayment(amountBorrowed, loanLength, intRate);
28 System.out.println(payment);
29
30 }
}