Question: IN JAVA Create a boolean to check if every side value is equal to each other Mine is WRONG but this is what i have:

IN JAVA

Create a boolean to check if every side value is equal to each other

Mine is WRONG but this is what i have:

public boolean isAllSidesEqual( ){ boolean SidesEqual = true; Double[ ] lengthOfSides = getLengths(); for (int j = 0; j < lengthOfSides.length; j++) { if (lengthOfSides[j] = lengthOfSides[j]) { SidesEqual = false; break; } } return SidesEqual; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!