✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Даны два класса A и B.
class A{public: A(); string getName(); virtual void print(); virtual void change();private: int id; string name;};class B: public A{public: B(); void show(); void change();private: int d; float num;};
Сколько методов (не считая конструкторы) будет доступно классу A и классу B?