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
Get step-by-step solutions from verified subject matter experts
