我沒有得到這個程序正確顯示我分期付款,我可以請得到一些幫助的感謝......確定定期貸款支付
package Loops;
import java.util.Scanner;
/**
*
*
*/
public class program {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
//variabled decleared
double rate;
double payment;
//input
System.out.print("Enter Loan Amount:");
double principal = input.nextDouble();
System.out.print("Enter Annual Interest:");
double interest = input.nextDouble();
System.out.print("Total payments per year:");//12=monthly,4= quartely,2=semi-annually and 1=annually
double period = input.nextDouble();
System.out.print("Enter Loan Length :");
int length = input.nextInt();
//proces
double n = period * length;
rate = interest/100;
double monthly_rate = rate/period;
payment = principal * (principal * (monthly_rate * Math.pow((1 + monthly_rate), n)));
System.out.printf("Your Monthly sum is %.2f", payment);
}
}
你期待什麼,你有什麼? – kosa
不是答案,只是遵循java命名約定。包名應以小寫字母開頭,類名應以大寫字母開頭。 – PermGenError
我越來越375,但它假設爲750,因爲我輸入500美元和1年50%的利息...... –