题库 第6484页
如果数据元素保持有序,则检索时就可以采用二分检索方法。
如果数据元素保持有序,则检索时就可以采用二分检索方法。 ~@[](1)答案:FALSE…
; (semicolon) use as a separator in a method
; (semicolon) use as a separator in a method parameter list. 分值为3分。 ~@[](3)答案:FALSE…
图G的一棵最小代价的代价未必小于图G的其他任何一棵生成树的代价。
图G的一棵最小代价的代价未必小于图G的其他任何一棵生成树的代价。 ~@[](1)答案:FALSE…
C语言中的移位运算符(如``)只能用于整型(如`int`、`short`、`long`、`char`等),不能用于
C语言中的移位运算符(如`˂˃`)只能用于整型(如`int`、`short`、`long`、`char`等),不能用于浮点型(如`double`、`float`)。 ~@[](2)答案:TRUE…
If there is no initial value for a local variable, then the valu
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
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
The arithmetic operators , `/`, `%`, `+` and `-` are in the same level of precedence. ~@[](1)答案:FALSE…
If a variable is declared as ` int fahr `; the expression` (5 *
If a variable is declared as ` int fahr `; the expression` (5 * (fahr - 32) / 9) ` is equal to expression` (5 / 9 * (fa…