C++程序设计之实验

时间:2021-06-26 06:07:05
【文件属性】:

文件名称:C++程序设计之实验

文件大小:33KB

文件格式:DOC

更新时间:2021-06-26 06:07:05

12 23

1.声明并实现一个矩形类,有长、宽两个属性,用成员函数计算矩形的面积。 答: #include using namespace std; class Rectangle { public: void input(int a,int b); void area(); private: int x,y; }; void Rectangle::input(int a,int b) { x=a; y=b; } void Rectangle::area() { int s; s=x*y; cout<<"s="<<s<<endl; } int main() { int a,b; cout<<"请输入矩形的长和宽:"; cin>>a>>b; Rectangle S; S.input(a,b); S.area(); return 0; }


网友评论