2010年10月高等教育自学考试C++程序设计试题 | ||
---|---|---|
发表时间:2010-12-30 21:48:52 来源: 互联网 点击次数:3125次 | ||
| ||
网站客服电话 客服电话:15690043855 |
||
}
void set(int a){x =a;} void get( ) { cout << x << endl; } }; class test2{ private: int x; public : test2 ( ) { x = 3 ; } void set( int a) { x = a; } void get( ) { cout << x << endl; } }; class test: public testl, public test2 { private : int x; public:void set( int a) { x=a; } void gettest( ) {cout << x << endl; } }; void main( ) { test a; a. get( ); } 42. #include < iostream, h > class test { private : int x, y; public : void testl ( int a, int b) { x = a ; y = b;} int max( ); }; int test:max( ) {if(x>y) return x;else return y;} void main( ){ test a; a. testl ( 1,3); cout << a. max ( ) << endl; } 43. #include < iostream, h > void main() { int x =5; const int * const p = &x; * p =88; cout << * p << endl; } 44. #include < iostream, h > class point { private : float x, y ; public : f( float a, float b) { x = a ; y = b ; } f( ) {x=O;y=O;} void getx( ) { cout < < x < < endl; } void gety ( ) { cout < < y < < endl ; } } class pointl } private : float x, y ; public : f( float a, float b) { x = a; y = b ; } f( ){x=l;y=l;} void getx( ) {cout < <x < <endl;} void gety( ) {cout < <y < <endl;} }; main( ) I point a; a.f(); |
||
网站客服电话 客服电话:15690043855 |
||
邯郸招生 邯郸培训学校 邯郸培训结构 邯郸培训课程 邯郸技能培训 邯郸培训信息 | ||
上一条:2010年10月高等教育自学考试管理信息系统试题 | ||
下一条:全国2010年10月高等教育自学考试建筑结构试验试题 |