You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
281 B
11 lines
281 B
public class Main {
|
|
public static void main(String[] args) {
|
|
shape c = new Circle(2);
|
|
shape r = new Rectangle(3, 4);
|
|
shape t = new Triangle(10, 5);
|
|
|
|
ShapeUtil.printArea(c);
|
|
ShapeUtil.printArea(r);
|
|
ShapeUtil.printArea(t);
|
|
}
|
|
}
|
|
|