Purchase Solution

A Java mortgage calculator

Not what you're looking for?

Ask Custom Question

Write the program in Java (without a graphical user interface) and have it calculate the payment amount for 3 mortgage loans:

- 7 year at 5.35%
- 15 year at 5.5%
- 30 year at 5.75%

Use an array for the different loans. Display the mortgage payment amount for each loan and then list the loan balance and interest paid for each payment over the term of the loan. Use loops to prevent lists from scrolling off the screen.

Purchase this Solution

Solution Summary

This solution provides a full Java implementation of a non-GUI mortgage calculator. The solution uses arrays and classes.

Solution Preview

This solution uses a Java class, Mortgage, to calculate the mortgage
payments for a few different configurations. All of the processing is
handled by this one Java class.

To make things easier we have a method that will process one loan configuration.
This method takes in an interest rate, the principle, and the term.
It ...

Purchase this Solution


Free BrainMass Quizzes
C++ Operators

This quiz tests a student's knowledge about C++ operators.

Javscript Basics

Quiz on basics of javascript programming language.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.