运用Java定义坐标系上的点类point,横坐标和纵坐标系是点的属性,对point类实现封装性,另外定义一个构造方法对坐标值进行初始化,定义一个成一个成员方法用于输出坐标值,输出格式为(1,2)定义坐标系上的圆的类,半径和圆心点用上面定义的point类型为圆的属性,定义三个成员方法,计算圆的周长,计算圆的面积,给定一个点point类型判断这个点是否在园内,在圆内返回true,在在圆外返回false
时间: 2023-05-19 08:01:23 浏览: 147
以下是Java代码:
```
public class Point {
private int x;
private int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public void printCoordinate() {
System.out.println("(" + x + "," + y + ")");
}
}
public class Circle {
private Point center;
private double radius;
public Circle(Point center, double radius) {
this.center = center;
this.radius = radius;
}
public double calculateCircumference() {
return 2 * Math.PI * radius;
}
public double calculateArea() {
return Math.PI * radius * radius;
}
public boolean isPointInside(Point point) {
double distance = Math.sqrt(Math.pow(point.x - center.x, 2) + Math.pow(point.y - center.y, 2));
return distance <= radius;
}
}
```
以上代码实现了一个点类和圆类,其中点类有横纵坐标属性和输出坐标的方法,圆类有圆心和半径属性,以及计算周长、面积和判断点是否在圆内的方法。
阅读全文