Call methods with parameters and return values

Assignment Help Basic Computer Science
Reference no: EM13336485

Objectives

Call methods with parameters and return values.
Use the Math class.
Use Scanner to input values.
Hand-in Requirements

All projects and laboratories will be submitted electronically through Blackboard. Zip up your entire lab directory to submit as the source. (Right click on the lab folder and follow Send To > Compressed (zipped) Folder or 7-Zip > Add to "lab3.zip".) The lab folder should include the following:

FutureValues.java
FutureValuesOutput.txt
Tasks

Write a program that prints

Lab 3 written by YOURNAME
and calls two methods.
Compute and return the future value of an account based on the present value of the account, the interest rate, and the number of years.
Compute and return the future value of an annuity based on the payment per year, the interest rate, and the number of years.
For each method, the main method needs to obtain input from the user, call the method with the input values, save the result of the method in a local variable, and print the inputs and the result.

Details

Future Value Using Compound Interest

If the present value of an account is $1000 and the interest rate is 5%, then after one year, the account will increase by $50 (5% of $1000). In the second year, the interest applies to all $1050, so the account will increase by $52.50 (5% of $1050). Getting future interest on past interest is called compound interest. A general formula for future value assuming p is the present value, r is the interest rate, and y is the number of years is:

future value = p * (1 + r / 100) y
Your method should have the following characteristics:

It should have three double parameters:
present value
interest rate
number of years
It should return a double, the future value.
It should use Math.pow in the calculation.
It should not have any print statements. The main method should do all the printing.
For examples with similar characteristics, see the hypotenuse method in the book and the max3 method in the lecture notes.

Future Value of an Annuity

For a typical annuity, you pay a certain amount every year (or some other period of time) for so many years, and an interest rate is applied to your payments. It's like a bank account where you deposit money regularly and wait several years to withdraw anything. In return, you are guaranteed a certain interest rate.

For example, suppose the payment is $100 by the end of each year and the interest rate is 5%. In the first year, your annuity will be worth $100. In the second year, you get $5 interest (5% of $100), and you make a payment of $100, so the annuity will be worth $205 after two years. In the third year, you get $10.25 interest (5% of $205), and you make another payment of $100, so the annuity will be worth $315.25 after three years.

A general formula for the future value of an annuity assuming p is the yearly payment, r is the interest rate, and y is the number of years is:


future value = p *( (1 + r / 100) y - 1)/ (r / 100))

Your method should have the following characteristics:

It should have three double parameters:
yearly payment
interest rate
number of years
It should return a double, the future value.
It should use Math.pow in the calculation.
It should not have any print statements. The main method should do all the printing.
For examples with similar characteristics, see the hypotenuse method in the book and the max3 method in the lecture notes.

Printing Money

When you are printing doubles, you will find out that Java often prints a lot of decimal places. To print out your monetary amounts as reasonable looking Strings, try the following method in your lab.

// Returns a String $dollars.cents rounded to the nearest cent.
// For example, moneyString(12.3456) returns "$12.35".
public static String moneyString(double amount) {
DecimalFormat dollarsAndCents = new DecimalFormat("$#0.00");
return dollarsAndCents.format(amount);
}
If you use this method, you'll need the following import statement at the top of your class.

import java.text.*;
Rubric

Your program should compile without any errors. A program with more than one or two compile errors will likely get a zero for the whole assignment.

Reference no: EM13336485

Questions Cloud

How hard does the ball push against the wall : A solid uniform 38.9kg ball of diameter 36.2cm is supported against a vertical frictionless wall using a thin 30.0cm wire of negligible mass. how hard does the ball push against the wall
Define the freezing point of a solution of calcium chloride : Some physical properties of water are shown below. freezing point 0.00°C boiling point 100.00°C Kf 1.86°C/m Kb 0.512°C/m What is the freezing point of a solution of calcium chloride that contains 26.0 g CaCl2 dissolved in 330. g of water
Implementation of the design in access : You were just hired by a new online books seller manager to build a web based database. The purpose of the database is two folds.
What is the angular speed of the lazy susan : A Texas cockroach of mass 0.123 kg runs counterclockwise around the rim of a lazy Susan (a circular disk mounted on a vertical axle) that has a radius 16.6 cm, What is the angular speed of the lazy Susan after the cockroach stops
Call methods with parameters and return values : Call methods with parameters and return values.
Create a square where there are width numbers : Take two numbers as input, a width and height. Create a square where there are WIDTH numbers on each line, and HEIGHT rows
Find with what speed did she reach the platform : A force platform is a tool used to analyze the performance of athletes measuring the vertical force that the athlete exerts on the ground as a function of time. With what speed did she reach the platform
Explain (r)-3-methylcyclopentene with osmium tetroxide : How many stereoisomers are possible for 3-methyl-1,2-cyclopentanediol. (b) Name the stereoisomers formed by oxidation of (R)-3-methylcyclopentene with osmium tetroxide.
Determine what is the firms earnings growth rate : The newspaper reported last week that Bennington Enterprises earned $34 million this year. The report also stated that the firm's return on equity is 16 percent. Bennington retains 80 percent of its earnings.

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Identifies the cost of computer

identifies the cost of computer components to configure a computer system (including all peripheral devices where needed) for use in one of the following four situations:

  Input devices

Compare how the gestures data is generated and represented for interpretation in each of the following input devices. In your comparison, consider the data formats (radio waves, electrical signal, sound, etc.), device drivers, operating systems suppo..

  Cores on computer systems

Assignment : Cores on Computer Systems:  Differentiate between multiprocessor systems and many-core systems in terms of power efficiency, cost benefit analysis, instructions processing efficiency, and packaging form factors.

  Prepare an annual budget in an excel spreadsheet

Prepare working solutions in Excel that will manage the annual budget

  Write a research paper in relation to a software design

Research paper in relation to a Software Design related topic

  Describe the forest, domain, ou, and trust configuration

Describe the forest, domain, OU, and trust configuration for Bluesky. Include a chart or diagram of the current configuration. Currently Bluesky has a single domain and default OU structure.

  Construct a truth table for the boolean expression

Construct a truth table for the Boolean expressions ABC + A'B'C' ABC + AB'C' + A'B'C' A(BC' + B'C)

  Evaluate the cost of materials

Evaluate the cost of materials

  The marie simulator

Depending on how comfortable you are with using the MARIE simulator after reading

  What is the main advantage of using master pages

What is the main advantage of using master pages. Explain the purpose and advantage of using styles.

  Describe the three fundamental models of distributed systems

Explain the two approaches to packet delivery by the network layer in Distributed Systems. Describe the three fundamental models of Distributed Systems

  Distinguish between caching and buffering

Distinguish between caching and buffering The failure model defines the ways in which failure may occur in order to provide an understanding of the effects of failure. Give one type of failure with a brief description of the failure

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd