public class example
{
public static void main(String[] args)
{
int i=0, j=9;
do
{
if(i++>--j) break;
} while(i<4);
System.out.println("i="+i+" and j="+j);
}
}
[单选题]下面是一个Java的应用程序,其输出结果是public class Testll{public static void main (String args[]){char c='i';for(int n;6;n<11;m + +){ if(n = =8)continue;System.out.print(c + +);A.ijB.ijkC. ijklD.ijklm
[单选题]设有如下程序: import java.util.*; public class Sun { public static void main (String args[ ]) { int score; String a; Random r=new Random (); score=r.nextInt (4)+5; switch(score) { case 0: a="E"; break; case 1: a="D"; break; case 2: a="C"; break; case
[单选题]设有如下程序: import java.util.*; public class Sun { public static void main(String args[ ]) { int score; String a; Random r=new Random(); score=r.nextInt(4)+5; switch(score) { case 0: a="E"; break; case 1: a="D"; break; case 2: a="C"; break; case 3:
[主观题]基于控制台的应用程序,默认是多线程的执行方式。()
[主观题]基于控制台的应用程序,默认的是多线程的执行方式。()
[单选题]指出下列程序运行的结果 ( ) public class Example{ String str=new String("good"); char[]ch={'a','b','c'}; public static void main(String args[]){ Example ex=new Example(); ex.change(ex.otr,ex.ch); System.out.print(ex.str+"and"); System.out.print(ex.ch);
[单选题]作为Java应用程序入口的main方法,其声明格式可以是( )。A.publicstaticvoidmain(String[]args)B.publicstaticintmain(String[]args)C.publicvoidmain(String[]args)D.publicintmain(String[]args)
[单选题]现有:public class Pet()public class Cat extends Pet{)执行代码Cat c- new Cat();Pet p= (Pet)c;后下列哪项是正确的?()A . Petp=(Pet)c运行错误B . Petp=(Pet)c编译错误C . Petp=(Pet)c止常执行D . 以上都不对
[单选题]下面程序的输出结果是______。 public class ex5 { public static void main(String[] args) { for(int cnt=l;cnt<=10;cnt++) { if(cnt<=5) continue; System.out.print (cnt+" "); } } }A.6 7 8 9B.1 2 3 4C.1 2 3 4 6 7 8 9 10D.6 7 8 9 10
[单选题]在执行下面这段Java程序时: public class Test { public static void main (String[] args) { String s1=args[0]; String s2=args[1]; String s3=args[2]; } }若编译程序后键入命令: java Test one two three,那么变量s1所引用的字符串为( )。A.nullB.testC.oneD.java