Rectangle矩形类
/*矩形类*/
class Rectangle
{
private:double L 0;double W 0;
public:Rectangle() default;Rectangle(double a, double b);double GetArea(); /*矩形面积*/double GetGirth(); /*矩形周长*/
};
/*构造函数*/
Rectangle::Rectangle(double a, double b) …
🌷🍁 博主猫头虎 带您 Go to New World.✨🍁 🦄 博客首页——猫头虎的博客🎐 🐳《面试题大全专栏》 文章图文并茂🦕生动形象🦖简单易学!欢迎大家来踩踩~🌺 &a…