Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java help output should look like this page Bellow: Based on Gaddis's Problem 20 from Chapter 2: When a bank account pays compound interest, it

Java help

image text in transcribed

output should look like this page Bellow:

image text in transcribed

Based on Gaddis's Problem 20 from Chapter 2: When a bank account pays compound interest, it pays interest not only on the principal amount that was deposited into the account, but also on the interest that has accumulated over time. Suppose you want to deposit some money into a savings account, and let the account earn compound interest for a certain number of years. The formula for calculating the balance of the account after a specified number of years is: The terms in the formula are: A is the amount of money in the account after the specified number of years. Pis the principal amount that was originally deposited into the account r is the annual interest rate. n is the number of times per year that the interest is compounded. t is the specified number of years. Write a program that makes the calculation for you. The program should ask the user to input the following: The amount of principal originally deposited into the account The annual interest rate paid by the account The number of times per year that the interest is compounded (for example, if interest is compounded monthly, enter 12; if interest is compounded quarterly, enter 4) The number of years the account will be left to earn interest Once the input data has been entered, the program should calculate and display the amount of money that will be in the account at the end of each year Note: The user should enter the interest rate as a percentage. For example, 2 percent would be entered as 2, not as .02. The program will then have to divide the input by 100 to move the decimal point to the correct position. Sample runs of this program are shown on the next page Please enter the principal amount : 1000 Please enter annual interest as 8: 4 Please enter the number of times/year the interest is to be compunded: 2 Please enter the number of years to display: 5 Year $ amount 1 1040.40 1082.43 3 1126.16 1171.66 5 1218.99 Please enter the principal amount: 1000 Please enter annual interest as %: 5 Please enter the number of times/year the interest is to be compunded: 1 Please enter the number of years to display: 6 Year $ amount 1 1050.00 2 1102.50 3 1157.63 4 1215.51 1276.28 1340.10 5 Please enter the principal amount: 100 Please enter annual interest as 8: 2 Please enter the number of times/year the interest is to be compunded: 12 Please enter the number of years to display: 3 Year $ amount 102.02 104.08 106.18

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

Introduction To Constraint Databases

Authors: Peter Revesz

1st Edition

1441931554, 978-1441931559

More Books

Students also viewed these Databases questions

Question

Persuading Your Audience Strategies for

Answered: 1 week ago