您现在位置:模拟考场> 湖北自学考试> 专业课> C++程序设计> 浏览试题
[主观题]

 #include < iostream, h >


    class testl {


       private : int x;


       public: testl ( ) { x = 2 ; }


          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;    


 _________;                  


        }


       };


收藏 查看答案