哪里有错误啊?

[复制链接]
查看11 | 回复1 | 2011-4-29 12:00:12 | 显示全部楼层 |阅读模式
#includeiostream
usingnamespacestd;
classRectangle
{

public:
{intwidth,height;}
private:
{voidr2(intw,inth)
intarea()
};
voidRectangle::r2(intw,inth)
{width=w;height=h;}
Rectangle::area(){returnwidth*height;}
intmain()
{
Rectangler1
r1.r2(3,5);
coutr1.area()endl;
return0;
}
回复

使用道具 举报

千问 | 2011-4-29 12:00:12 | 显示全部楼层
1、我实在搞不懂,你都已经会写类了,居然还会忘了写分号
很多地方,我就不一一列举了
2、属性设为私有,方法设有公有。你却恰好相反,另外公有私有不要用大括号括起来,放在后面系统就会分辨。
3、Rectangle::area(){returnwidth*height;}前面少了函数类型int

编程要细心。。

最后完整的代码如下:
#includeiostream
usingnamespacestd;
classRectangle
{
private:
intwidth,height;
public:
voidr2(intw,inth);
intarea();
};
voidRectangle::r2(intw,inth)
{
width=w;
height=h;
}
intRectangle::area()
{
returnwidth*height;
}
intmain()
{
Rectangler1;
r1.r2(3,5);
coutr1.area()endl;
return0;
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行