再保险公司可以接受的最大赔偿限额是______。
A.分出限额 B.分入限额C.承保限额 D.保险金额
参考答案:C
异常吞咽可出现()
A.远中错
B.近中错
C.开
D.深覆
E.以上都不是
请找出下列程序中错误之处 ______。 #include<iostream.h> class Aprivate: int x1;protected: int x2;public: int x3; ; class B:public Aprivate: int y1;protected: int y2;public: int y3;void disp()cout<<x1<<y1<<end1: //Avoid set(int i) x2=i; //B ; void main() B bb;bb.x3=10; //Cbb.y3=10; //D