Thanks for all your help guys with my first assignment I really learned alot, I really appreciated it...well here is my next assignment...I just some help not much.....
This is the assignment
In this assignment, set up a Java application that will compute compound investment growth.
If you invest P dollars at R percent interest rate compounded annually, in N years, your
investment will grow to
Write a Java program that accepts P, R, and N as input and computes (then outputs) the value of
the investment after N years. (The interest rate, R, must be input—and used in the formula
above—as the percent, not as the decimal equivalent. For example, if the interest rate is 7.5%,
use 7.5 for R, not .075.)
Use standard input and standard output for input and output.
Your program must prompt the user for each piece of input (P, R, and N).
The output should be in the form of a complete sentence, with the result appearing as a monetary
figure (i.e., with a dollar sign and with two places displayed after the decimal point).
the only real problem I can see is how to I make that formula into one that java understands...I know I have to use floating point numbers...Also I don't know how to input the values..