• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Need help with amortization table design

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am having an extremely difficult time coming up with the code and design for a Mortgage Calculator that will provide an Amortization Table. The table must include this information:

1. Loan Balance
2. Principal Balance
3. Interest Balance
4. Total Principal Paid
5. Total Interest Paid

I am new to Java so if anyone can give me some coding suggestions or advice/help I would greatly appreciate it.

Thanks!
 
Ranch Hand
Posts: 155
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Write out the formulas to calculate everything you need to calculate.

Decide what your variables are and give them good names.

Decide what Java primitive types your varibles should be.

Try writing some code (no graphical interface yet) and if you run into trouble and need help then show us what you have (use CODE /CODE flags)and tell us what problems you've been having.

Good luck!
[ October 30, 2004: Message edited by: Elouise Kivineva ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic