Answer:
See code below and explanation.
Explanation:
We can use Python for this wih the program Spyder to create the following code:
# INPUTS
p = float(input("Enter current bank balance: "))
i = float(input("Enter interest rate in %: "))
t = int(input("Enter the amount of time that passes: "))
# OUTPUTS
f=p*(1+ (i/100))**t
print("The future values is:", f)
We assume that the interest rate given is in % and we divide by 100 in order to convert to fraction.
And the example result obtained is given below:
Enter current bank balance: 35.7
Enter interest rate in %: 0
Enter the amount of time that passes: 100
The future values is: 35.7