Question: Question: A static method, maxTriangle, accepts an array of triangles (objects of type Triangle), and returns that triangle in the array which has the greatest

Question:
A static method, maxTriangle, accepts an array of triangles (objects of type Triangle), and returns that triangle in the array which has the greatest circumference. Create this method.
Please explain step by step how to think (and step by step what to do) when you approach this kind of question :)
The class Triangle represents a triangle: class Triangle the side lengths of the triangle private double a private double b private double c; public Triangle (double a, double b, double c) this. a ai this.b bi this.c ci perimeter returns the circumference of the triangle public double perimeter return a+b+c; area returns the area of the triangle public double area double s (a b c) 2; double ar Matha sart (s (s a) (s b) (s C) return ar
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
