am stuck on getting the payment_interest, principal_interest and ending balance an them to run correctly any help will do thanks
import java.util.Scanner;
public class loan {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
//variabled decleared
double rate;
double payment;
int amt = 1;
//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:");//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
rate = interest / 100;
double period_rate = rate / period;
double n = period * length;
payment = (principal * Math.pow((1 + period_rate), n)) / n;
double payment_interest=(principal*Math.pow((1+period_rate),n));
double principal_payment=payment;
double current_balance=(payment_interest-principal_payment);
System.out.printf("\n"+"Your answer is %.2f",payment);
System.out.printf("\n"+"Your answer is %.2f",payment_interest);
System.out.printf("\n"+"Your answer is %.2f",principal_payment);
System.out.printf("\n"+"Your answer is %.2f",current_balance);
}
}