Results 1 to 4 of 4
Thread: Payment Calculator help
- 07-04-2010, 12:07 AM #1
Member
- Join Date
- Jul 2010
- Posts
- 4
- Rep Power
- 0
Payment Calculator help
Trying to get a car loan calculator working, seems i have something wrong, its off by about 39 bucks. (20000 desired amount, .07 percent, 60 months). Guessing it has to be something easy but my mind is numb. Simple applet (user inputs price, rate and number of months), hits calculate button. Any guidance would be great.
Java Code:public void actionPerformed(ActionEvent e) { double price = Double.parseDouble(costField.getText()); double rate = Double.parseDouble(rateField.getText()); double months = Double.parseDouble(monthsField.getText()); i = (price * rate)/months; m = price/months; value = (i + m); outputLabel.setText("Monthly Payment is" + value); //outputLabel.setText("Monthly Payment is" + Math.round(value* 100)/100D); }
- 07-04-2010, 12:20 AM #2
Try debugging your code by adding println()s to show all the results of all the calculations.
Put numbers in this to get algorithm to work.
Java Code:double price = 20000; double rate = 7.0; double months = 60;; double i = (price * rate)/months; double m = price/months; double value = (i + m); System.out.println("value=" + value); //value=2666.666666666667 vLast edited by Norm; 07-04-2010 at 12:26 AM.
- 07-04-2010, 12:45 AM #3
Member
- Join Date
- Jul 2010
- Posts
- 4
- Rep Power
- 0
Understood, but seems i have something wrong with my formula's do they look ok to you? Or am i going crazy, but they seem right. But checking against a online calculator they dont appear to match up.
-
Your monthly payment formula doesn't seem to match the one I've seen before: Mortgage calculator - Wikipedia, the free encyclopedia
Similar Threads
-
need help with my calculator
By semoche in forum AWT / SwingReplies: 6Last Post: 12-04-2009, 10:16 PM -
Calculator
By water in forum AWT / SwingReplies: 4Last Post: 09-23-2009, 06:00 AM -
help with calculator
By kalibballer in forum New To JavaReplies: 8Last Post: 04-01-2009, 12:57 PM -
Calculator help.
By madkidd02 in forum New To JavaReplies: 2Last Post: 10-25-2008, 07:42 AM -
Swing Calculator
By nemo in forum AWT / SwingReplies: 1Last Post: 05-28-2007, 11:07 AM


LinkBack URL
About LinkBacks

Bookmarks