已定义基类A和派生类B: class A{ptivate: int x;protected: int y;public: int z;void ShowA( ) { cout << x << y << z B、y = 5;
C、z = 5;
D、ShowA( );