栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 笔试题库

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

笔试题库 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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

[填空题] 请将下面程序补充完整。 public class PowerCalc{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 【11】 (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; }}

正确答案:

【11】power

参考解析:

通过程序片段可看出,在main方法中调用了。power方法,所以需要在类中对power方法进行定义,否则编译会报错。下面的程序片段就是对power方法的定义。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/480289.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号