...求圆面积的成员函数getarea())和一个桌子类table(私有数据成员_百度...
发布网友
发布时间:2024-06-11 12:31
我来回答
共1个回答
热心网友
时间:2024-06-11 13:35
class Circle{
private int radius;
public Circle(){
radius=10;//设置radius的初始值
}
public void setRadius(int r){
radius=r;
}
public int getRadius(){
return radius;
}
public double getArea(){
return radius*radius*3.14;
}
}
class Table extends Circle{ //因为java是单继承关系
private int height;
public Table(){
height=10;//设置height的初始值
}
public int getHeight(){
return height;
}
public void setHeight(int h){
height=h;
}
}
class Roundtable extends Table{ //因为java是单继承关系
private String color;
public Roundtable(int r,int h,String c){
color=c;
setRadius(r);
setHeight(h);
}
public String getColor(){
return color;
}
public void showMsg(){
System.out.println("圆桌的面积是:"+getArea()+"圆桌的高度是:"+getHeight()+"圆桌的颜色是:"+getColor());
}
}
public class Test { //测试类
public static void main(String[] args) {
Roundtable rt=new Roundtable(20,30,"红色");
rt.showMsg();
}
}
设计一个圆类circle(私有数据成员radius和求圆面积的成员函数getarea...
System.out.println("圆桌的面积是:"+getArea()+"圆桌的高度是:"+getHeight()+"圆桌的颜色是:"+getColor());} } public class Test { //测试类 public static void main(String[] args) { Roundtable rt=new Roundtable(20,30,"红色");rt.showMsg();} } ...
...成员函数GetArea(),计算圆的面积,构造一个circle的对象,进行测试...
cout<<"圆1的面积:"<<c1.GetArea()<<endl;circle c2(10);cout<<"圆2的面积:"<<c2.GetArea()<<endl;return 0;}
...计算圆的面积和周长(). 要求:1.该类有一个私用的数据成员R,表示半径...
//圆的半径 public: //公开成员关键字 XY(){R=0;} //无参构造函数 XY(double N){R=N;} //有参构造函数 int Set(double N){R=N;} //设置半径的成员函数 double Get(){return R;} //获得半径的成员函数 double Grith() //求周长的成员函数 {...
...length 和 width ;以及包含用于求长方形面积的成员函数。_百度...
{ public:double Length;//长度 double Width;//宽度 Rectangle(double length, double width) {//定义一个有两个参数的构造函数,用于设置长方形的宽度和长度 this->Length = length;this->Width = width;} double Area() { //求面积函数 return Width * Length;//返回长度和宽度的乘积 } };...
C++成员函数的声明
下面例子中定义了一个成员函数。通过它,你的矩形类可以计算自己的面积了:int getArea(int w,int h){ int a;a=w*h;return a;} 另外,矩形还需要对自己进行描绘,因此它需要成员函数drawRect(),此时,你的矩形类的定义将如下所示:public class DrwRect { public static void main(String args...
Java程序:创建一个桌子(Table)类,该类中有桌子名称、重量、桌面宽度、长...
"+this.width);System.out.println("面积:"+this.getArea());} public void changeWeight(int w){ this.weight=w;} public static void main(String[] args){ Table table = new Table("小桌子",20,50,20,20);int area=table.getArea();table.changeWeight(30);table.display();} } ...
c++圆周长面积
//Circle.cpp / 定义一个圆类(Circle),私有数据成员为半径(radius)、圆周长和面积,共有成员函数为输入半径;计算周长、面积;输出半径、周长和面积。要求定义构造函数(以半径为参数,缺省值为0,周长和面积在构造函数中生成)和复制构造函数。再主函数中创建2个对象,一个通过构造函数初始化,一...
设计一个方形类square和一个盒子类Box
public int GetArea(int length) { area = length * length;return area;} } public class Box { private int height;public int getHeight() { return height;} public void setHeight(int height) { this.height = height;} } public class squareBox extends Square { private String color;...
用C++编写椭圆类(内详)
double GetArea(){ return (PI*a*b);} double GetCircumference(){ return (2*PI*b+4*(a-b));} };int main(){ //CEllipse c(10.0,10.0);CEllipse c(7,5);cout<<"椭圆面积: "<<c.GetArea()<<endl;cout<<"椭圆周长: "<<c.GetCircumference()<<endl;getchar();return 1;}...
想深入学习C#语言,有没有达人知道C#的好的资料呢?
10、编写一个矩形类,私有数据成员为举行的长(len)和宽(wid),无参构造函数将len和wid设置为0,有参构造函数设置和的值,另外,类还包括矩形的周长、求面积、取举行的长度、取矩形的长度、取矩形的宽度、修改矩形的长度和宽度为对应的形参值等公用方法。11、编写一个类,要求带有一个索引器可以存储100个整型变量。