Program that calculates and displays the amount of money – Software Engineering
Create the logic for a program that calculates and displays the amount of money you’ll have for those who invested $5000 at 2 % easy curiosity for one 12 months. Create a separate methodology to do the calculation and return the end result to be displayed.
I actually need the C++ translation, I do know that the flowchart and pseudocode could be discovered elsewhere.
// Pseudocode PLD Chapter 9 #three pg. 400
// Begin
// Declarations
// num amount
// num newAmount
// num interestRate
// output “Please enter the greenback amount. ”
// enter amount
// output “Please enter the rate of interest(e.g., 9 percet ought to be entered as 9.zero). ”
// enter interestRate
// newAmount = FutureValue(amount,interestRate)
// output “The brand new greenback amount is “, newAmount
// Cease
//
//
//
// num FutureValue(num initialAmount, num interestRate)
// Declarations
// num finalAmount
// finalAmount = (1 + interestRate/100) * initialAmount
// return finalAmount