Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a java program that will compute and display the value of an investment for each of the next five years. Each year, interest is

"Write a java program that will compute and display the value of an investment for each of the next five
years. Each year, interest is added to the value. The interest is computed by multiplying the current
value by a fixed interest rate. Assume that the initial value and the rate of interest are to be input by
the user when the program is run."
C:\WINDOWS ??? system32\cmd.exe
Type initial investment:
Initial Investment =1000.0
Initial Rate =5.0%
Press any key to continue ...Lets see how one might develop the program, which computes the value of an investment over five years. The task that you want the program to perform is: Compute and display the value of an investment for each of the next five years, where the initial investment and interest rate are to be specified by the user. You might then writeor at least thinkthat this can be expanded as:
Get the users input
Compute the value of the investment after 1 year
Display the value
Compute the value after 2 years
Display the value
Compute the value after 3 years
Display the value
Compute the value after 4 years
Display the value
Compute the value after 5 years
Display the value
This is correct, but rather repetitive. And seeing that repetition, you might notice an
opportunity to use a loop. A loop would take less typing. More important, it would be more
general: Essentially the same loop will work no matter how many years you want to process.
So, you might rewrite the above sequence of steps as:
Get the users input
while there are more years to process:
Compute the value after the next year
Display the value
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro PowerShell For Database Developers

Authors: Bryan P Cafferky

1st Edition

1484205413, 9781484205419

More Books

Students also viewed these Databases questions