[solved]-Using Java 8 Javafx Create Simple Financial Calculator Resembles Following Program Calcula Q39071005
Using Java 8 and JavaFX, create a simple financial calculatorthat resembles the following:
The program calculates the future value of an investment at agiven interest rate for a specified number of years. The interestrate is given as a percentage. The formula for the calculation is:futureValue = investmentAmount × (1 + monthlyInterestRate) years×12Note that the formula requires the monthly interest rate (as adecimal). Therefore, your program must convert the annualpercentage interest rate typed by the user into a monthly, decimalinterest rate.

Part I: Create a Simple Investment Calculator (20 points) Filename(s): Lab15.java Using Java 8 and JavaFX, create a simple financial calculator that resembles the following: CSE 114 – Summer 2019 Lab Assignment #15 Lab 15 Investment Amount: 10000 Number of Years: Annual Interest Rate: 3.25 Future value: $11761.90 Calculate The program calculates the future value of an investment at a given interest rate for a specified number of years. The interest rate is given as a percentage. The formula for the calculation is: futureValue = investment Amount x (1 + monthlyInterest Rate) Year Note that the formula requires the monthly interest rate (as a decimal). Therefore, your program must convert the annual percentage interest rate typed by the user into a monthly, decimal interest rate. Show transcribed image text Part I: Create a Simple Investment Calculator (20 points) Filename(s): Lab15.java Using Java 8 and JavaFX, create a simple financial calculator that resembles the following: CSE 114 – Summer 2019 Lab Assignment #15 Lab 15 Investment Amount: 10000 Number of Years: Annual Interest Rate: 3.25 Future value: $11761.90 Calculate The program calculates the future value of an investment at a given interest rate for a specified number of years. The interest rate is given as a percentage. The formula for the calculation is: futureValue = investment Amount x (1 + monthlyInterest Rate) Year Note that the formula requires the monthly interest rate (as a decimal). Therefore, your program must convert the annual percentage interest rate typed by the user into a monthly, decimal interest rate.
Expert Answer
Answer to Using Java 8 and JavaFX, create a simple financial calculator that resembles the following: The program calculates the f… . . .
OR

