力法的基本未知力是通过变形协调条件确定的,而其余未知量是通过()条件确定的。
A.平衡
B.物理
C.图乘
D.变形协调
参考答案:A
在98、52、3、19、0、68、57这七个数中,最大的数是______,最小的数是______;个位上的数字相同的数是______和______,十位上的数字相同的数是______和______.
下面程序的结果是( )。 #include<iostream.h> class test{ private: int num; public: test( ); int getint( ) {return num;} ~test( );}; test::test( ) { num=0;} test::~test( ) { cout<<"Destructor is active"<<endl;} void main( ) { test x[3]; cout<<"Exiting main"<<endl;}
A.信息隐藏
B.数据封装
C.定义新类
D.数据抽象