|
Before Width: | Height: | Size: 347 KiB After Width: | Height: | Size: 347 KiB |
|
Before Width: | Height: | Size: 347 KiB After Width: | Height: | Size: 347 KiB |
@ -1,9 +1,9 @@ |
|||||
public class Main { |
public class Main { |
||||
public static void main(String[] args) { |
public static void main(String[] args) { |
||||
// 创建图形对象
|
// 创建图形对象
|
||||
Shape circle = new Circle(3); |
Shape circle = new Circle(6); |
||||
Shape rectangle = new Rectangle(4, 5); |
Shape rectangle = new Rectangle(7, 9); |
||||
Shape triangle = new Triangle(6, 8); |
Shape triangle = new Triangle(7, 10); |
||||
|
|
||||
// 统一计算并打印面积
|
// 统一计算并打印面积
|
||||
ShapeUtil.printArea(circle); |
ShapeUtil.printArea(circle); |
||||
|
Before Width: | Height: | Size: 340 KiB After Width: | Height: | Size: 340 KiB |
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |