没有搜到到结果?点击这里求解答/求资源。
【多选题】
以下假设变量都已经正确定义,以下能实现两数交换;()

t=a;a=b;b=t;
t=b;b=a;a=t;
a=t;b=t;t=a;
b=t;a=b;a=t;
【单选题】
有以下定义语句:structstudent{intnum;charname[9];};则不能正确定义结构数组并赋初始值()。

structstudentstu[2]={1,zhangsan,2,lisi};
structstudentstu[2]={{1,zhangsan},{2,lisi}};
structstu[2]={{1,zhangsan},{2,lisi}};
structstudentstu[]={{1,zhangsan},{2,lisi}};
【单选题】
有以下函数定义:voidfun(intn,doublex){……}若以下选项中变量都已正确定义并赋值,则对函数fun正确调用语句()

fun(inty,doublem);
k=fun(10,12.5);
fun(x,n);
voidfun(10,12.5);
【判断题】
测试正确定义“为了发现程序中错误而执行程序过程”。

正确
错误
【判断题】
通常定义误差敏感方向指通过刀刃加工表面的法线方向,所以,在此方向上,原始误差对加工误差影响最大。

正确
错误
【多选题】
以下各组选项中,不能正确定义二维实型数组s选项()

float s[3][4];float s[ ][4];float s[3][ ]={{1},{0}}
float s(3,4);float s[ ][ ]={{0};{0}};float s[3][4]
float s[3][4];float s[ ][4]={{0},{0}}; float s[ ][4]={{0},{0},{0}}
float s[3][4];float s[3][ ];float s[ ][4]
【单选题】
在C语言中对一维整型数组正确定义为()。

inta(10);
intn=10,a[n];
intn;a[n];
#defineN10;inta[N];
【单选题】
关于抽样误差叙述,正确()。

抽样误差可以避免
抽样误差大小可以估计
不同样本间不存在抽样误差
抽样误差就是一种系统误差
抽样误差指个体差异
【单选题】
若变量已正确定义,语句“if(a>b)k=0;elsek=1;”和()等价。

k=(ab)?1:0;
k=ab;
k=a=b;
a=b?0:1;
【单选题】
下面关于“公差”和“误差叙述正确( )

公差允许实际要素变动范围
误差实际要素和理论要素差值
公差>0
以上3个答案都对