标题:[求助]请高手运行一下看看这个程序错在哪里
取消只看楼主
好学
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
帖 子:622
专家分:318
注 册:2004-5-4
结帖率:50%
 问题点数:0 回复次数:0 
[求助]请高手运行一下看看这个程序错在哪里
class point{ float x,y; public: Point(float a=0,float b=0){x=a;y=b} void SetP(float a=0,float b=0){x=a;y=b} void Display(){cout<<"位置是:("<<x<<","<<y<<")\n";} }; class Circle:public Point{ float r; public: Circle(float z=1,float x=0,float y=0){r=z;} void SetC(float z=1,float x=0,float y=0){r=z;SetP(x,y);} void Print() { cout<<"圆的"; Display(); cout<<"圆的半径是:"<<r<<endl; } }; void main() { Circle a(3.2); a.Print(); a.SetC(6,8,2); a.Print(); }
搜索更多相关主题的帖子: float void 
2004-06-16 21:02



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-2559-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054516 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved