Java Mortgage Calculator
Below is one of our free research papers on Java Mortgage Calculator. If the term paper below is not exactly what you're looking for, you can search our essay database for other topics or order a custom essay.
Java Mortgage Calculator
//Mortgage ver. 1.3
//8-26-08
//Have to import the IO Class
import java.io.IOException;
public class Mortgage
{
//This area lets the user press Enter to continue
public static void waitForEnter()
{
try
{
int ch;
while((ch = System.in.read()) != -1 && ch != '\r')
{
;
}
} catch (IOException ex)
{
}
}
public static void main(String[] args)
{
//Define Array Variables
int [] NumberOfPayments = {84, 180, 360}; //Length of Mortgage in Months
int [] NumberOfYears = {7, 15, 30}; //Length of Mortgage in Years
double [] AnnualInterestRate = {.0535, .055, .0575}; //Annual Interest Rate
//Define Other Variables
double PrincipleBalance = 200000; //$200,000 Principle Balance of Mortgage
double DiscountFactor;
double MonthlyInterestRate;
double MonthlyPayment;
double NewPrincipleBalance = PrincipleBalance; //Loan Balance During Amortization
//Array Loop
int LoanMe;
for (LoanMe = 0; LoanMe
- Submitted by: interpur
- Date Submitted: 09/03/2008 11:45 PM
- Category: Technology
- Words: 446
- Pages: 2
- Views: 1203
- Rank: 7534