单选题下列代码段inti=1,j=10;do{???if(i++--j)continue;}while(i5);执行完毕后,i和j的值分别是()。Ai=6?j=5Bi=5?j=5Ci=6?j=4Di=5?j=6
单选题
下列代码段inti=1,j=10;do{???if(i++>--j)continue;}while(i<5);执行完毕后,i和j的值分别是()。
A
i=6?j=5
B
i=5?j=5
C
i=6?j=4
D
i=5?j=6
参考解析
解析:
暂无解析
相关考题:
●试题四阅读下列函数说明和C代码,将应填入(n)处的字句写在答题纸的对应栏内。【说明】函数QuickSort是在一维数组A[n]上进行快速排序的递归算法。【函数】void QuickSort(int A[],int s,int t){int i=s,j=t+1,temp;int x=A[s];do{do i++;while (1) ;do j--;while(A[j]x);if(ij){temp=A[i]; (2) ; (3) ;}}while(ij);A[a]=A[j];A[j]=x;if(si-1) (4) ;if(j+1t) (5) ;}
publicclasstest3{publicstaticvoidmain(Stringargs[]){for(inti=0;i3;i++){for(intj=3;j=0;j--){if(i==j)continue;System.out.println(i=+i+j=+j);}}}}上面的Java代码编译运行后,下列选项中,()会出现在输出结果中。A.i=0j=3B.i=0j=0C.i=2j=2D.i=0j=2E.i=1j=2
给定下面的代码: int i=1,j=10; do { if(i++>--j) continue; }while(i<5) 执行完之后,i与j的值分别是多少? ( )A.i=6,j=5B.i=5,j=5C.i=6,j=4D.i=5,j=6
在执行完此程序段后,i,j值为 int i=1,j=10; do{ if(++i>j--)continue; }while(i<5);A.i=6 and j=5B.i=5 and j=5C.i=6 and j=4D.i=5 and j=6
执行下面的程序段后i和j的结果为 int i=1,j=10; do { if(i++>--j)continue; } while(i<5);A.i=6,j=5B.i=5,j=5C.i=6,j=4D.i=5,j=6
publicclassFoo{publicstaticvoidmain(String[]args){inti=1;intj=i++;if((i++j)(i++==j)){i+=j;}}}Whatisthefinalvalueofi?() A.1B.2C.3D.4E.5
inti=1,j=10;do(if(i++--j)continue;)while(i5);Afterexecution,whatarethevaluesforIandj?() A.i=6andj=5B.i=5andj=5C.i=6andj=4D.i=5andj=6E.i=6andj=6
inti=1,j=10;do{if(ij){continue;}j--;}while(++i6);System.out.println(i=+i+”andj=+j);Whatistheresult?() A.i=6andj=5B.i=5andj=5C.i=6andj=4D.i=5andj=6E.i=6andj=6
publicclassFoo{publicstaticvoidmain(Stringargs){inti=1;intj=i++;if((i++j)(i++==j)){i+=j;}}}Whatisthefinalvalueofi?() A.1B.2C.3D.4E.5
下面程序片段输出的是()。inti=0,j=9;do{if(i++>--j)break;}while(i A、i=4andj=4B、i=5andj=5C、i=5andj=4D、i=4andj=5
下列程序执行后的结果是______。public class ex24{public static void main(String[] args){int j=10;a1: for(int i=3;i>0;i--){j-=i;int m=l;a2: while (m<j){if (i<=m)continue a1;j/=m++;}}System.out.println(j);}}下列嵌套的循环程序执行后,结果是______。 public class ax25 { public static void main(String[] args) { int sum=0; for(int i=0;i<=5;i++) { for(int j=10;j>3*i;j--) { sum+=j*i; } } System.out.println(sum); } }A.136B.127C.147D.153
当执行以下程序后,i的值是5,j的值是4,k的值是【 】。int a, b, c, d, i, j, k;a=10; b=c=d=5; i=j=k=0;for(;a>b; ++b) i++;while(a>++c) j++;do {k++;}while(a>d++);
在执行完此程序段后,i,j值为 int i=1-10; do{ if(++i>j--)continue; } while(i<5);A.i=6 and j=5B.i=5 and j=5C.i=6 and j=4D.i=5 and j=6
下面代码输出结果是( )。inti=0,s=0;do{if(i%2==0){i++;continue;}i++;s=s+i;}while(i 下面代码输出结果是( )。inti=0,s=0;do{if(i%2==0){i++;continue;}i++;s=s+i;}while(iSystem.out.println(s);A、16B、12C、28D、21
下面程序片段输出的是( )。inti=0,j=9;do{if(i++>--j)break;}while(i 下面程序片段输出的是( )。inti=0,j=9;do{if(i++>--j)break;}while(iSystem.out.println("i="+i+"andj="+j);A、i=4andj=4B、i=5andj=5C、i=5andj=4D、i=4andj=5
下列代码______行错误。 ( )(1)public void modify( ){(2)intI,j,k,(3)I=100;(4)while(I>0){(5)j=I*2;(6)System.out.println("The value of j is"+j);(7)k=k+1;(8)I--;(9)}(10)}A.-4B.-6C.-7D.-8
观察以下程序段:int i=1,j=10;do{if(i++>--j) continue;} while(i A. i=6 j=5B. i=5 j=5C. i=6 j=4D. i=5 j=6
int i = 1,j = 10; do{ if (ij) { continue; } j--; } while (++i 6); System.out.println(“i = “ +i+” and j = “+j); What is the result?() A、 i = 6 and j = 5B、 i = 5 and j = 5C、 i = 6 and j = 4D、 i = 5 and j = 6E、 i = 6 and j = 6
int i= 1, j= 10 ; do ( if (i++ --j) continue; ) while (i5); After execution, what are the values for I and j?() A、 i = 6 and j= 5B、 i = 5 and j= 5C、 i = 6 and j= 4D、 i = 5 and j= 6E、 i = 6 and j= 6
下列代码段inti=1,j=10;do{???if(i++--j)continue;}while(i5);执行完毕后,i和j的值分别是()。A、i=6?j=5B、i=5?j=5C、i=6?j=4D、i=5?j=6
单选题int i= 1, j= 10 ; do ( if (i++ --j) continue; ) while (i5); After execution, what are the values for I and j? ()A i = 6 and j= 5B i = 5 and j= 5C i = 6 and j= 4D i = 5 and j= 6E i = 6 and j= 6
单选题int i = 1,j = 10; do{ if (ij) { continue; } j--; } while (++i 6); System.out.println(“i = “ +i+” and j = “+j); What is the result?()A i = 6 and j = 5B i = 5 and j = 5C i = 6 and j = 4D i = 5 and j = 6E i = 6 and j = 6