请找出下列程序中错误之处 ______。 #include<iostream.h> class A{ private: int x1; protected: int x2;

admin2009-01-15  29

问题 请找出下列程序中错误之处 ______。
   #include<iostream.h>
   class  A{
      private:
         int  x1;
      protected:
         int  x2;
      public:
         int  x3;
   };
   class B:public A{
      private:
         int  y1;
      protected:
         int  y2;
      public:
         int  y3;
      void disp(){cout<<x1<<y1<<end1:}  //A
      void set(int i) {x2=i;}    //B
   };
    void main() {
       B bb;
       bb.x3=10;  //C
       bb.y3=10;  //D
   }

选项 A、A
B、B
C、C
D、D

答案1

解析
转载请注明原文地址:https://kaotiyun.com/show/sikp777K
0

最新回复(0)