単利を計算するプログラムを作成し、別のメソッドを使用して計算を返し、計算を行う必要があります。
public class Unit7B
{
public static void main ( String [ ] args )
{
double p = Input.getDouble ("Enter the principal");
double i = Input.getDouble ("Enter the interest rate");
double n = Input.getDouble ("Enter the number of years");
double result = simpleInterest( p, i, n);
System.out.println (result);
}
public double simpleInterest (double p, double i, double n)
{
return ( p * ( Math.pow ( 1.0 + i , n ) ));
}
}