C++题目求解~~~

定义一个Point类表示平面上的一个点,再定义一个Rectangle类来表示政企矩形。在Rectangle类中包含Point类的对像,作为矩形左上角的坐标。要求为Rect... 定义一个Point类表示平面上的一个点,再定义一个Rectangle类来表示政企矩形。在Rectangle类中包含Point类的对像,作为矩形左上角的坐标。要求为Rectangle类创建一个带参数的构造函数,并在其中对Point类的对像初始化。
定义一个Point类表示平面上的一个点,再定义一个Rectangle类来表示一个矩形。在Rectangle类中包含Point类的对像,作为矩形左上角的坐标。要求为Rectangle类创建一个带参数的构造函数,并在其中对Point类的对像初始化。
展开
 我来答
匿名用户
2011-05-04
展开全部
#include<iostream>
using namespace std;
int main()
{
int i,j,n;
for(i=0;i<4;i++) //正着输出
{
for(j=3;j>i;j--)
cout<<" ";
for(n=2*i+1;n>=0;n--)
{
if(n==i) //除去对角线上的*
cout<<" ";
cout<<"*";
}
cout<<endl;
}

for(i=2;i>=0;i--) //倒着输出
{
for(j=3;j>i;j--)
cout<<" ";
for(n=2*i+1;n>=0;n--)
{
if(n==i) //除去对角线上的*
cout<<" ";
cout<<"*";
}
cout<<endl;
}
return 0;
}
另外,团IDC网上有许多产品团购,便宜有口碑
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
porker2008
2011-04-28 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
class Point
{
public:
Point(double x=0, double y=0)
: _x(x), _y(y) {}
const double x() const {return _x;}
const double y() const {return _y;}
private:
double _x,_y;
};

class Rectangle
{
public:
Rectangle(double x=0, double y=0, double width=0, double height=0)
: _LT(x,y), _width(width), _height(height) {}
const Point LT() const {return _LT;}
const double width() const {return _width;}
const double height() const {return _height;}
private:
Point _LT;
double _width,_height;
};
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-04-28
展开全部
class Point
{
public:
Point(double x1=0, double y1=0)
{x=x1;y=y1;}
double getx() {return x;}
double gety() {return y;}
private:
double x,y;
};

class Rectangle
{
public:
Rectangle(double x=0, double y=0, double width=0, double height=0)
: p(x,y), width(width1), height(height1) {}
point getp(){return p;}
double getwidth(){return width;}
double getheight(){return height;}
private:
Point p ;
double width,height;
};
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式