Assignment:
Problem:
Create a class named Triangle java implementing Triangle lnterface. Include the following data members and methods:
1. Three double data members representing the three sides of a triangle (private)
2. Constructor which takes three double numbers representing the three sides of the triangle
3. getter methods
4. public void set Sides(double a, double b, double c) to set three sides of a triangle
5. Implements the methods specified in the interface
If the three numbers can not form a valid triangle, assign O to all sides.
Once completed, Create a plain text file named result.txt, then summarize (copy) the result from running the Grader class