博客园第三次作业

Posted yyq828

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了博客园第三次作业相关的知识,希望对你有一定的参考价值。

4-11
#include<iostream> using namespace std; class Rectangle{ //定义矩形类 public: //公共成员接口 Rectangle(double i,double j); //构造函数 Rectangle(Rectangle &R); //复制构造函数 ~Rectangle(); //析构函数 double area(double length,double width){ return length*width; }; //计算矩形面积,内联函数 private: //私有成员接口 double length; double width; }; Rectangle::Rectangle(double i,double j){ //构造函数,定义数据类型 length = i; width = j; } Rectangle::Rectangle(Rectangle &R){ //析构函数 length = R.length; width = R.width; } Rectangle::~Rectangle() { } int main(){ double length,width; cout << "矩形的长 :" ; //输入长的值 cin >> length; cout << "矩形的宽 :"; //输入宽的值 cin >> width; Rectangle R1(length,width); //定义rectangle类的对象R1 cout << "矩形的面积 :" << R1.area(length,width) << endl; return 0; }


运行结果截图
技术分享图片




  









以上是关于博客园第三次作业的主要内容,如果未能解决你的问题,请参考以下文章

花博园第三次全负荷压力测试完成,双休日近8万名游客入园体验

博客园第六次作业

第三次博客作业

第三次作业

第三次作业

第三次作业