首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
请将下面程序补充完整。 public class PowerCalc{ public static void main(String[]args){ double x=5.0; S
请将下面程序补充完整。 public class PowerCalc{ public static void main(String[]args){ double x=5.0; S
admin
2009-08-24
56
问题
请将下面程序补充完整。
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【 】 (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方法的定义。
转载请注明原文地址:https://jikaoti.com/ti/8ob0FFFM
本试题收录于:
二级Java题库NCRE全国计算机二级分类
0
二级Java
NCRE全国计算机二级
相关试题推荐
在表单设计中,经常会用到一些特定的关键字、属性和事件,下列各项中属于属性的是
删除表Emtemp的SQL语句是
删除Employee表中职工号为“19620426”的记录,正确的SQL语句是
要清除顶层表单中调用的菜单文件,一般在表单的哪个事件中编写程序代码()。
下面关于算法的叙述中,正确的是()。
下面关于运行应用程序的说法正确的是()。
下列选项中不属于结构化程序设计原则的是()。
对软件是否能达到用户所期望的要求的测试称为()。
下面不属于标识符的命名规则的是()。
随机试题
顾客价值是一种_______价值。
Yearsago,acigarettecommercialaskedifyouweresmokingmore,butenjoyingitless.Thatdescribesthewaymanyofuslivet
A.K+外流B.Ca2+内流和K+外流C.Na+内流D.Ca2+缓慢内流E.Na+和Ca2+内流心室肌细胞2期平台期主要是由于
企业总法律顾问的任职条件有()。
风险主要是指()。
在新建商品房销售市场,吸纳周期又称为()。
改革开放以来,中国净进口粮食占国内粮食生产的比重呈减少趋势,1978~1984年为3.2%,1985~1990年为1.2%,1991~1995年为0.4%。另外,中国在进口一些粮食的同时,还出口一些具有较高附加值的食品。因此()
AlthoughstateswereallowedtocoinmoneyrightaftertheAmericanRevolution,theyarenotallowedtodosotoday.
A、upper-middleclasspeopleB、highIQintelligentsiaC、thosewhohavelessthan3childrenD、thosewhohavemorethan3children
A、Thewomanisfilmingthelake.B、Thewomanisrunningtowardthelake.C、Thewomancan’ttakeaphotooftheman.D、Thewoman
最新回复
(
0
)