当前位置:IT认证>软件水平

问题:[填空题]

[填空题] 将下面程序补充完整。 public class PowerCale {  public static void main(String[] args) {   double x=5.0;   System.out.println(x+"to the power 4 is"+power(x,4));   System.out.println("7.5 to the power 5 is"+power(7.5,5));   System.out.printl

  

参考答案:

power

  参考解析

本程序中,main()方法中的输出语句调用了power()方法,后边是对power()方法的定义,所以下画线处应填写power。本程序的power()采用了递归的方法来计算一个数的阶乘。

微信端