以被保险人依法或依契约应对第三者承担的经济赔偿责任为保险标的的一种保险称为()。
A.保证保险
B.责任保险
C.信用保险
D.赔偿保险
参考答案:B
下列四组词语中没有错别字的一项是( )(2分)
A有例可援 遍稽群藉 鳞次栉比 如坐针毡
B沧海横流 周道如底 引颈受戳 吹毛求疵
C影影绰绰 顶礼模拜 星临万户 不求甚解
D睡眼惺松 断壁残垣 怀古伤今 乐此不疲
使用VC6打开考生文件夹下的工程test38_1,此工程包含一个源程序文件test38_1.cpp,但该程序运行有问题,请改正函数中的错误,使该程序的输出结果为: 2 is a factor of 10 源程序文件test38_1.cpp清单如下:#include <iostream.h>class myclass/***************** found *****************/ int n,dpublic: myclass(int i, int j) n=i; d=j; friend int factor( myclass ob);;/***************** found *****************/int myclass::factor(myclass ob)/***************** found *****************/ if(ob.n%ob.d)return 1; elsereturn 0;void main() myclass ob1(10,2),ob2(13,3); if(factor(ob1))cout<<"2 is a factor of 10\n"; if(factor(ob2))cout<<"3 is not a factor of 13\n";