还是关于继承的一个小程序 帮我改改吧~ 谢谢了~
#include <iostream>#include<string.h>
using namespace std;
class circle
{
public:
circle(int r)
{
ra=r;
}
//void display() {cout<<半径<<r<<endl;}
};
class table
{
public:
table(int h,string col)
{
height=h;
colour=col;
}
// void diaplay() { cout<<高度<<h<<颜色<<col<<endl;}
protected:
int h;
string col;
};
class circletable:public table,public circle
{
public:
float s;
circletable(int r,int h,string col,float s):table(h,col),circle(r){}
s=3.14*r*r;
void display()
{
cout<<"半径"<<r<<"高度"<<h<<"颜色"<<col<<"面积" <<s<<endl;
}
};
void main()
{
float s;
//circle c(10);
//c.displsy();
//table t(12,"黑色");
//t.display();
circletable ct(12,15,"黑色",s);
ct.display();
}
调试有错 怎么改呢? 谢谢了~
题目是一个圆类circle 一个桌子类table 还有一个派生出的circletable类,圆类里面是半径,桌子类是高度和颜色 圆桌类有自己的另外一个面积私有成员 输出高度 面积 颜色 半径
[ 本帖最后由 bester214 于 2009-11-14 12:11 编辑 ]