Keep the method name as it is. I was just suggesting change in the variable name.
What I mean here is
public static double calcFV(double p, double r, double t)
{
double value1 = p; // assign the variable p to principle
double value2 = r; // assign the variable r to rate
double value3 = t; // assign the variable t to years
double futureValue = p * Math.pow( (1.0 + r/100), t);
return futureValue;
}
Also keep the call to the method in the println statement unchanged
System.out.println("Your investment will be worth approximately: " + calcFv(p,r,t));
I think you have got yourself confused with method and variables. As ~s.o.s~ has mentioned read some java tutorials like this one and practice some more examples to get things sorted out.