-4

编写一个程序来计算单利,并且必须使用单独的方法来返回计算并进行计算。

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 ) ));
   }
}
4

1 回答 1

2

您需要标记simpleInterest为静态方法:

public static double simpleInterest (double p, double i, double n)
{
    return ( p * ( Math.pow ( 1.0 + i , n ) ));
}

这是因为非静态方法需要类实例,而静态方法不需要。为了使用您的非静态方法,您必须使用以下内容创建类:

Unit7B unit = new Unit7B();
unit.simpleInterest(p, i, n);
于 2013-01-04T19:49:52.397 回答