-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShape.java
More file actions
96 lines (89 loc) · 2.36 KB
/
Shape.java
File metadata and controls
96 lines (89 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package Module8;
import java.util.Scanner;
class Shape {
private static Circle circle = new Circle();
private static Triangle triangle = new Triangle();
private static Quad quad = new Quad();
private static Pentagon pentagon = new Pentagon();
private static Hexagon hexagon = new Hexagon();
private static Heptagon heptagon = new Heptagon();
private static Octagon octagon = new Octagon();
private static Nonagon nonagon = new Nonagon();
static void printShapeName() {
Scanner scanner = new Scanner(System.in);
System.out.println("Input number of angles from 3 to 9 or 0: ");
int angles = scanner.nextInt();
switch (angles) {
case 0:
circle.circleShape();
case 3:
triangle.triangleShape();
break;
case 4:
quad.quadShape();
break;
case 5:
pentagon.pentagonShape();
break;
case 6:
hexagon.hexagonShape();
break;
case 7:
heptagon.heptagonShape();
break;
case 8:
octagon.octagonShape();
break;
case 9:
nonagon.nonagonShape();
break;
default:
System.out.println("No shape!");
}
}
}
class Circle extends Shape {
public void circleShape() {
System.out.println("Circle");
}
}
class Triangle extends Shape {
public void triangleShape() {
System.out.println("Triangle");
}
}
class Quad extends Shape {
public void quadShape() {
System.out.println("Quad");
}
}
class Pentagon extends Shape {
public void pentagonShape() {
System.out.println("Pentagon");
}
}
class Hexagon extends Shape {
public void hexagonShape() {
System.out.println("Hexagon");
}
}
class Heptagon extends Shape {
public void heptagonShape() {
System.out.println("Heptagon");
}
}
class Octagon extends Shape {
public void octagonShape() {
System.out.println("Octagon");
}
}
class Nonagon extends Shape {
public void nonagonShape() {
System.out.println("Nonagon");
}
}
class ShapeTest {
public static void main(String[] args) {
Shape.printShapeName();
}
}