填空题

诊断和改正程序中错误的工作通常称为______。

【参考答案】

调试或程序调试 或 软件调试 或 Debug(英文字母大小写均可)或 调试程序或调试软件
<上一题 目录 下一题>
热门 试题

单项选择题
下面程序段的输出结果是 public class Test public static void main(String args[]) int x,y; x=(int)Math.sqrt(5) 2+(int)Math.random()*5 2; y=(int)Math.sqrt(3) 2+(iht)Math.random()*3 2; if(x>y) System.out.println( x>y ); else if (x==y) System.out.println( x=y ); else System.out.println( x<y );
A.x>y
B.x=y
C.x<y
D.编译错误
单项选择题
下面程序段的输出结果是 public class Test public static void main(String args[]) int a,b; for(a=1, b=1; a<=100; a++) if(b>=10)break; if (b%2==1) b+=2; continue; System.out.println(
A.;
&nb
相关试题
  • Java对象串行化技术,主要是通过_____...
  • 下面程序段是从对象流中读取对象,请将程序...
  • Swing的顶层容器有:JApplet,JWindow,JDi...
  • sum的值为0,则result=sum==01:num...
  • 面向对象的语言将客观世界都看成由各种对象...