-->
当前位置:首页 > 题库

题库 第6484页

  • 最新
  • 浏览
  • 评论

如果数据元素保持有序,则检索时就可以采用二分检索方法。

Luz5年前 (2021-05-10)1387
如果数据元素保持有序,则检索时就可以采用二分检索方法。 ~@[](1)答案:FALSE…

; (semicolon) use as a separator in a method

Luz5年前 (2021-05-10)1103
; (semicolon) use as a separator in a method parameter list. 分值为3分。 ~@[](3)答案:FALSE…

最小生成树的Kruskal算法是一个贪心法。

Luz5年前 (2021-05-10)1033
最小生成树的Kruskal算法是一个贪心法。 ~@[](1)答案:TRUE…

图G的一棵最小代价的代价未必小于图G的其他任何一棵生成树的代价。

Luz5年前 (2021-05-10)915
图G的一棵最小代价的代价未必小于图G的其他任何一棵生成树的代价。 ~@[](1)答案:FALSE…

int k; 表达式~(k^~k)的值为0。

Luz5年前 (2021-05-10)1851
int k; 表达式~(k^~k)的值为0。 ~@[](1)答案:TRUE…

C语言中的移位运算符(如``)只能用于整型(如`int`、`short`、`long`、`char`等),不能用于

Luz5年前 (2021-05-10)3613
C语言中的移位运算符(如`˂˃`)只能用于整型(如`int`、`short`、`long`、`char`等),不能用于浮点型(如`double`、`float`)。 ~@[](2)答案:TRUE…

If there is no initial value for a local variable, then the valu

Luz5年前 (2021-05-10)912
If there is no initial value for a local variable, then the value is uncertain ~@[](1)答案:TRUE…

In C, when caculating using int type and double type, data is co

Luz5年前 (2021-05-10)1294
In C, when caculating using int type and double type, data is converted from double to int ~@[](1)答案:FALSE…

The arithmetic operators , `/`, `%`, `+` and `-` are in the same

Luz5年前 (2021-05-10)1039
The arithmetic operators , `/`, `%`, `+` and `-` are in the same level of precedence. ~@[](1)答案:FALSE…

If a variable is declared as ` int fahr `; the expression` (5 *

Luz5年前 (2021-05-10)1274
If a variable is declared as ` int fahr `; the expression` (5 * (fahr - 32) / 9) ` is equal to expression` (5 / 9 * (fa…