// PL7/multiple.cpp // A Basic example of multiple inheritance // Niels Walet, last updated 06/12/2019 #include class A { protected: double Ax; public: A(const double Axin) : Ax{Axin} {} void show(){std::cout<<"Ax="<