Results 1 to 3 of 3
Thread: monthly mortgage payment formula
- 04-21-2011, 11:23 PM #1
Member
- Join Date
- Oct 2010
- Posts
- 28
- Rep Power
- 0
monthly mortgage payment formula
I have written this program to calculate the monthly mortgage payment someone would have to pay but the formula I used at the end for calculating it is wrong and was wondering if anyone has the correct formula
thanking you in advance
Leon
package pract16;
import javax.swing.JOptionPane;
import java.text.DecimalFormat;
/**
*
* @author Leon
*/
public class Pract16 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
DecimalFormat twoDigits = new DecimalFormat("0.00");
String strMoAmt,strMoTerm,strInterest;
double moAmt,moTerm,interest,calcPayment;
strMoAmt=JOptionPane.showInputDialog("Enter Mortgage Amount ");
moAmt=Double.parseDouble(strMoAmt);
strMoTerm=JOptionPane.showInputDialog("Enter Term of Mortgage ");
moTerm=Double.parseDouble(strMoTerm);
strInterest=JOptionPane.showInputDialog("Enter Amount of Interest ");
interest=Double.parseDouble(strInterest);
calcPayment=CP(moAmt,moTerm,interest);
JOptionPane.showMessageDialog(null,"Amount of interest is "+twoDigits.format(calcPayment));
}
public static double CP(double x,double y,double z){
double CP= (x*z)/(1 - Math.pow(1/(1 +z), y * 12));
return CP;
}
}
- 04-22-2011, 12:25 AM #2
Senior Member
- Join Date
- Jun 2008
- Posts
- 339
- Rep Power
- 5
A mortgage calculation formula is not a Java problem. If you find the correct formula, we can help you if you have trouble implementing it in Java.
- 04-22-2011, 01:46 PM #3
Member
- Join Date
- Oct 2010
- Posts
- 28
- Rep Power
- 0
Similar Threads
-
for online payment
By Mayank shukla in forum New To JavaReplies: 2Last Post: 04-12-2011, 09:37 AM -
monthly temperatures
By droidus in forum New To JavaReplies: 23Last Post: 04-05-2011, 02:21 AM -
Mortgage Calculator
By rsmithjr316 in forum New To JavaReplies: 14Last Post: 01-21-2011, 10:53 PM -
Mortgage Calculator
By pablo2002 in forum Java AppletsReplies: 3Last Post: 09-25-2010, 10:34 PM -
mortgage calculator help
By kalibballer in forum New To JavaReplies: 1Last Post: 03-26-2009, 11:35 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks