OPPapers.com Essay Index >> Technology >> Mortgage
We have many free term papers and essays on Mortgage. We also have a wide variety of research papers and book reports available to you for free. You can browse our collection of term papers or use our search engine.
Mortgage Loan. What is a Mortgage? A mortgage is a financial agreement between a
lender and a buyer, in which the property is used as collateral for the loan. ...
Mortgage. /* File Name MortgageSchedule.java Purpose Modify the mortgage
program to display the mortgage payment amount. Then, list ...
mortgage. ... ARM Margin: The spread (or difference) between the index rate and
the mortgage interest rate for an adjustable-rate mortgage. ...
Mortgage Calculator Jave. /* Week 2 individual assignment by William Velez
Version 1.1 Edited by William Velez on September 27th, 2007 ...
Mortgage Calculator w/ GUI (wk 4). Filename ... 3.0 - Modified the mortgage program
from version 1.0 to display 3 mortgage loans. Included ...
Submitted by mari_renee on December 29, 2005
Category: Technology
Words: 395 | Pages: 2
Views: 283
Popularity Rank: 34,642
Average Member Grade: N/A (Add a Comment / Grade this Paper)
/*
File Name MortgageSchedule.java
Purpose Modify the mortgage program to display the mortgage payment
amount. Then, list the loan balance and interest paid for each payment
over the term of the loan. The list would scroll off the screen, but
use loops to display a partial list, hesitate, and then display more of
the list. Do not use a graphical user interface. Insert comments in
the program to document the program.
*/
import java.io.IOException;
import java.text.DecimalFormat;
public class MortgageSchedule //class header
{
public static void main(String[] args) //method header
{
DecimalFormat twoDigits = new DecimalFormat("0.00"); //formats the salary amount into 2 decimal places
//declare variables and arrays
double mortgage =200000;
double payment =0; //payment amount monthly
double interest =.0575; // Interest Rate (APR)
double interstmorate =(interest/12); //interest rate (monthly)
int term =30; // 30 years
int termmo =(term*12); //terms put into months
int linecount =20; //displays 20 lines
double totalpay =0; //Total mortgage amount + interest to be paid
double number =0; //number of payments made
double principalmo =0; //principal paid monthly
double interestmo =0; //interest paid monthly
double balance = mortgage;
// formats numbers to display only two decimal places
java.text.DecimalFormat dec = new java.text.DecimalFormat(",###.00");
//Caculate the Monthly Mortgage Payment
payment = (mortgage * interstmorate) / (1 - Math.pow(1 + interstmorate, - termmo));
//Print output of mortgage payment amount
System.out.println("Mortgage Amortization...
You must Login to view the entire paper.
If you are not a member yet, Sign Up for free!