Write a Java program. Consider the structure of the code that is shown in the picture. Instructions: Determine if a triangle is equilateral, isosceles, or scalene. An equilateral triangle has all three sides the same length. An isosceles triangle has at least two sides the same length. (It is sometimes specified as having exactly two sides the same length, but for the purposes of this exercise we'll say at least two.) A scalene triangle has all sides of different lengths. Note For a shape to be a triangle at all, all sides have to be of length > 0, and the sum of the lengths of any two sides must be greater than or equal to the length of the third side. See Triangle Inequality. Dig Deeper The case where the sum of the lengths of two sides equals that of the third is known as a degenerate triangle - it has zero area and looks like a single line. Feel free to add your own code/tests to check for degenerate triangles.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a Java program. Consider the structure of the code that is shown in the picture.

Instructions:

Determine if a triangle is equilateral, isosceles, or scalene.

An equilateral triangle has all three sides the same length.

An isosceles triangle has at least two sides the same length. (It is sometimes specified as having exactly two sides the same length, but for the purposes of this exercise we'll say at least two.)

scalene triangle has all sides of different lengths.

Note

For a shape to be a triangle at all, all sides have to be of length > 0, and the sum of the lengths of any two sides must be greater than or equal to the length of the third side. See Triangle Inequality.

Dig Deeper

The case where the sum of the lengths of two sides equals that of the third is known as a degenerate triangle - it has zero area and looks like a single line. Feel free to add your own code/tests to check for degenerate triangles.

Triangle.java
1- klass Triangle {
2
Triangle(double sidel, double side2, double side3) throws TriangleException {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
6
boolean isEquilateral() {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
7-
8
}
10
boolean isIsosceles () {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
11 -
12
13
14
boolean isScalene() {
throw new UnsupportedOperationException ("Delete this statement and write your own implementation.");
15 -
16
17
18
19
}
TriangleException.java
1- public class TriangleException extends Exception {
2 }
mt un LON 0O 9o
Transcribed Image Text:Triangle.java 1- klass Triangle { 2 Triangle(double sidel, double side2, double side3) throws TriangleException { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); 6 boolean isEquilateral() { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); 7- 8 } 10 boolean isIsosceles () { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); 11 - 12 13 14 boolean isScalene() { throw new UnsupportedOperationException ("Delete this statement and write your own implementation."); 15 - 16 17 18 19 } TriangleException.java 1- public class TriangleException extends Exception { 2 } mt un LON 0O 9o
Expert Solution
steps

Step by step

Solved in 2 steps with 4 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education