填空题

请将下面的Applet程序补充完整。
import java. awt. *;
import java. applet. *;
public class Hi 【12】 {
public void paint(Graphics g){
g. drawString("Hi!", 25, 25);
}
}

【参考答案】

【12】extends Applet
<上一题 目录 下一题>
热门 试题

填空题
请将下面程序补充完整。 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; } }
填空题
Java输入 输出流中包括字节流、 【9】 、文件流、对象流及管道流。
相关试题
  • Java中,可以通过建立java. lang. 【1...
  • Swing中的组件往往采用MVC结构,MVC指的是M...
  • 如果一个线程调用 【15】 ()方法,将...