[填空题] 将下面程序补充完整。 public class PowerCale {  public static void main(String[] args) {   double x=5.0;

[填空题] 将下面程序补充完整。 public class PowerCale {  public static void main(String[] args) {   double x=5.0;,第1张

[填空题] 将下面程序补充完整。 public class PowerCale {  public static void main(String[] args) {   double x=5.0;

[填空题] 将下面程序补充完整。 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.println("7.5 to the power 0 is"+power(7.5,0));   System.out.println("10 to the power -2 is"+power(10,-2));  }  static double ______ (double x,int n) {   if(n>1)return x * power(x,n-1);   else if(n<0)return 1.0/power(x,-n);   else return n==0 1.0:x:   } }

正确答案:

power

参考解析:

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5468736.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存