-->
当前位置:首页 > Luz 第6446页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:对于循环while(!x) 语句,!x等价于____。

Luz5年前 (2021-05-10)1616
对于循环while(!x) 语句,!x等价于____。 @[A](2)A. x==0B. x!=0C. x==1D. x!=1A.x==0B.x!=0C.x==1D.x!=1答案:A…

单选题:若有关变量已经被恰当定义,下面循环语句的循环体将执行____次。

Luz5年前 (2021-05-10)1709
若有关变量已经被恰当定义,下面循环语句的循环体将执行____次。 @[D](2)```for(i=0, j=5; ++i!=--j; ) printf(“%d %d”, i, j);```A. 6B. 3C. 0D. 无限A.6B.3C…

单选题:下列程序段输出结果为 ____。

Luz5年前 (2021-05-10)969
下列程序段输出结果为 ____。 @[B](2)``` int x = -3, y = 2; if(x˃y); x = -x; if(x˂y) y = -y; printf("x=%d,y=%d\n",…

单选题:在下图中,阴影部分区域可用表达式______来表示。

Luz5年前 (2021-05-10)1454
在下图中,阴影部分区域可用表达式______来表示。 @[C](2)![t5.png](~/9dc091e1-2ffe-4fc5-bda9-f9d72e6159a7.png)A. (x=b)&&(x˂=c)B. (x˂=a)||(b˂=…

单选题:下列程序段输出结果为__。

Luz5年前 (2021-05-10)879
下列程序段输出结果为__。 @[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 的值分别为____。

Luz5年前 (2021-05-10)1968
假设有定义: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.…

单选题:以下正确的字符常量是____。

Luz5年前 (2021-05-10)1157
以下正确的字符常量是____。 @[B](2)A. '\412'B. 255C. '\08'D. '\'A.'\412'B.255C.'\08'D.'\'答案:B…

单选题:下列程序段执行后s值为____。

Luz5年前 (2021-05-10)2151
下列程序段执行后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

Luz5年前 (2021-05-10)1181
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

Luz5年前 (2021-05-10)971
After deleting 15 from the red-black tree given in the figure, which one of the following statements must be FALSE? @[…