我是真看不清楚
追问
追答依然看不清
追问设计一个圆类Circle,具有属性,圆心坐标x和y及圆的半径R,除具 有设置及获取属性的方法外,还具有计算圆长的方法permeter()和 计算面积的方法area(),再设计一个圆柱类Cylinder,继承自 Circle,增加了属性,高度h增加了设置和获取h的方法,计算表面积 的方法area)和计算体积的方法volumle(),完成后编写一测试类 CylinderTest,在其中创建Cylinder类的对象,显示其所有属性,计 算属性,计算并显示其面积和体积,
跪求
追答package com;
import java.math.*;
public class Circle {
private int x;
private int y;
private int R;
public double permeter(){
double zc = 2*R*Math.PI;
return zc;
}
public double area(){
double mj = R*R*Math.PI;
return mj;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public int getR() {
return R;
}
public void setR(int r) {
R = r;
}
}
---------------------
package com;
public class Cylinder extends Circle{
private int h;
public double area1(){
double mj = permeter()*h+area()*2;
return mj;
}
public double volumle(){
double mj = area()*h;
return mj;
}
public int getH() {
return h;
}
public void setH(int h) {
this.h = h;
}
}
-----------------------
package com;
public class text {
public static void main(String[] args) {
Cylinder cy = new Cylinder();
cy.setH(3);
cy.setR(2);
cy.setX(2);
cy.setY(2);
System.out.println(cy.area()); //面积
System.out.println(cy.volumle());//体积
System.out.println(cy.permeter());//周长
System.out.println(cy.area1());//表面积
}}