当前位置:首页
> Luz 第6604页
Luz 管理员
暂无介绍
89859 篇文章 33 次评论Without extends keyword in the declaration of a class, that clas
Without extends keyword in the declaration of a class, that class is inherited from `Object` ~@[](1)答案:TRUE…
"Circular Queue" is defined to be a queue implemented by a circu
"Circular Queue" is defined to be a queue implemented by a circularly linked list or a circular array. ~@[](1)答案:FALSE…
Methods in an interface are default to `public abstract`.
Methods in an interface are default to `public abstract`. ~@[](1)答案:TRUE…
为了检查以下else-if语句的三个分支是否正确,至少需要设计63组测试用例,即`ch`的取值至少有63组(52个大小写英文字母
为了检查以下else-if语句的三个分支是否正确,至少需要设计63组测试用例,即`ch`的取值至少有63组(52个大小写英文字母、10个数字字符、其他字符)。 ``` if((ch ˃= 'a' && ch = 'A' && ch = '0…
为了检查以下if-else语句的两个分支是否正确,至少需要设计3组测试用例,即x的取值至少有三组(小于15的数、15和大于15的
为了检查以下if-else语句的两个分支是否正确,至少需要设计3组测试用例,即x的取值至少有三组(小于15的数、15和大于15的数)。 ``` if (x ˂= 15){ y = 4 * x / 3; } else{ y =…
执行以下程序段,输入`20`,输出`20.00`。
执行以下程序段,输入`20`,输出`20.00`。 ``` double x; scanf("%f", &x); printf("%.2f", x); ``` ~@[](1)答案:FALSE…
执行以下程序段,输入`10`,输出`10.00`。
执行以下程序段,输入`10`,输出`10.00`。 ``` double x; scanf("%d", &x); printf("%.2f", x); ``` ~@[](1)答案:FALSE…
执行以下程序段,输入`30`,输出`30.00`。
执行以下程序段,输入`30`,输出`30.00`。 ``` double x; scanf("x=%lf", &x); printf("%.2f", x); ``` ~@[](1)答案:FALSE…