1.设计图形(Shape)类及其子类(Circle、Rectangle、Triangle)。。。

更新时间:2023-07-08 09:40:01 阅读: 评论:0

1.设计图形(Shape)类及其⼦类(Circle、Rectangle、
Triangle)。。。
Point:
public class Point {
private int x;
private int y;
public int getX() {
return x;
}
public void tX(int x) {
this.x = x;
}
public int getY() {
return y;
服装店加盟}
public void tY(int y) {
this.y = y;
}
public Point() {
super();
}
}
寒假英文
Shape:
public class Shape {
private Point p;
private String color;
public double calcArea() {
return 0;
}
public double calcPerimeter() {
return 0;
}
public Shape() {
super();
}
public Point getP() {
return p;
}
public void tP(Point p) {
this.p = p;
}
public String getColor() {
return color;
}
public void tColor(String color) {
}
}
Circle :
public class Circle extends Shape { private int radius;
public Circle() {
super();
}
public Circle(int radius) {
super();
this.radius = radius;
}
public double calcArea() {
return Math.PI * radius * radius;  }
public double calcPerimeter() {
return 2 * Math.PI * radius;
}
public int getR() {
return radius;
}
public void tR(int r) {
this.radius = r;
}
}
Rectangle:
private int width;
public Rectangle() {
super();
}
public Rectangle(int length, int width) {  super();
this.length = length;
this.width = width;
}
public double calcArea() {
return length * width;
}
with or without you
public double calcPerimeter() {
return 2 *( length + width);
}
public int getLength() {
return length;
}
public void tLength(int length) {
this.length = length;
}
public int getWidth() {
return width;
}
toyota recall
public void tWidth(int width) {
this.width = width;
}
阿黛尔 skyfall
}
Triangle:
private int height;
public Triangle() {
super();
}
public Triangle(int length, int height) {
super();
this.length = length;
this.height = height;
}
public double calcArea() {
return  (length * height)/2;
}
public double calcPerimeter() {
return length +2 *Math.sqrt(((length/2)*(length/2))+(height* height)); }
public int getLength() {
return length;
}
public void tLength(int length) {
this.length = length;
}
public int getHeight() {
return height;
}
public void tHeight(int height) {
this.height = height;
}
}
测试:Test
public class Testlianxi1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Shape s = new Shape();
mouth wateringCircle c = new Circle(5);麻烦的英文
System.out.println("圆的⾯积为:" +c.calcArea());
mwieSystem.out.println("圆的周长为:" +c.calcPerimeter());
Rectangle r = new Rectangle(5, 6);
System.out.println("矩形的⾯积为:" +r.calcArea());
System.out.println("矩形的周长为:" +r.calcPerimeter());
虚拟语气练习题Triangle t = new Triangle(6, 4);哈尔滨雅思
System.out.println("等腰三⾓形的⾯积为:" +t.calcArea());
System.out.println("等腰三⾓形的周长为:" +t.calcPerimeter()); }
}

本文发布于:2023-07-08 09:40:01,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/1085237.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图