当前位置:首页
> Luz 第6446页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:对于循环while(!x) 语句,!x等价于____。
对于循环while(!x) 语句,!x等价于____。 @[A](2)A. x==0B. x!=0C. x==1D. x!=1A.x==0B.x!=0C.x==1D.x!=1答案:A…
单选题:若有关变量已经被恰当定义,下面循环语句的循环体将执行____次。
若有关变量已经被恰当定义,下面循环语句的循环体将执行____次。 @[D](2)```for(i=0, j=5; ++i!=--j; ) printf(“%d %d”, i, j);```A. 6B. 3C. 0D. 无限A.6B.3C…
单选题:下列程序段输出结果为 ____。
下列程序段输出结果为 ____。 @[B](2)``` int x = -3, y = 2; if(x˃y); x = -x; if(x˂y) y = -y; printf("x=%d,y=%d\n",…
单选题:在下图中,阴影部分区域可用表达式______来表示。
在下图中,阴影部分区域可用表达式______来表示。 @[C](2)A. (x=b)&&(x˂=c)B. (x˂=a)||(b˂=…
单选题:下列程序段输出结果为__。
下列程序段输出结果为__。 @[A](2)```int x=1, y=012;printf( "%d", y*x++);```A. 10B. 12C. 20D. 24A.10B.12C.20D.24答案:A…
单选题:假设有定义:double x=16/5/2.0, y=16/5.0/2; 则 x 和 y 的值分别为____。
假设有定义:double x=16/5/2.0, y=16/5.0/2; 则 x 和 y 的值分别为____。 @[D](2)A. 1.6 1.5B. 1.6 1.6C. 1.5 1.5D. 1.5 1.6A.1.6 1.5B.1.6 1.…
单选题:以下正确的字符常量是____。
以下正确的字符常量是____。 @[B](2)A. '\412'B. 255C. '\08'D. '\'A.'\412'B.255C.'\08'D.'\'答案:B…
单选题:下列程序段执行后s值为____。
下列程序段执行后s值为____。 @[C](2) int i=5, s=0;do if (i%2) continue; else s+=i; while (--i);A. 15B. 9C. 6D. 4A.15B.9C.6D.4答案:C…
单选题:A B+ tree of order 3 with 21 numbers has at most ___ nodes of de
A B+ tree of order 3 with 21 numbers has at most ___ nodes of degree 3. @[D](3)A. 1B. 2C. 3D. 4A.1B.2C.3D.4答案:D…
单选题:After deleting 15 from the red-black tree given in the figure, w
After deleting 15 from the red-black tree given in the figure, which one of the following statements must be FALSE? @[…