Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);    
    }
}
share|improve this question
2  
What about them is wrong? – PearsonArtPhoto Nov 21 '12 at 20:48
when it calculates monthly payments its adding the total interest to the principal which is suppose to add the amount/period to d principal then take a payment then add the interest back to that current figure and so on an so on – Kern Dennis Nov 21 '12 at 20:57
1  
It would be best to add these details to your question by editing the question. A few outputs would also do wonders. Preferably with the print statements changed to print the name of the variable, and not all being identical. – PearsonArtPhoto Nov 21 '12 at 21:03

closed as not a real question by Adel Boutros, talonmies, Mac, Filburt, David Hammen Nov 21 '12 at 23:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.