|
|
@@ -4,15 +4,15 @@ class Triangle {
|
|
4
|
4
|
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
5
|
5
|
}
|
|
6
|
6
|
|
|
7
|
|
- public boolean isEquilateral() {
|
|
|
7
|
+ boolean isEquilateral() {
|
|
8
|
8
|
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
9
|
9
|
}
|
|
10
|
10
|
|
|
11
|
|
- public boolean isIsosceles() {
|
|
|
11
|
+ boolean isIsosceles() {
|
|
12
|
12
|
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
13
|
13
|
}
|
|
14
|
14
|
|
|
15
|
|
- public boolean isScalene() {
|
|
|
15
|
+ boolean isScalene() {
|
|
16
|
16
|
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
17
|
17
|
}
|
|
18
|
18
|
|