You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something about the Triangle.class in the package of org.avmframework.examples.inputdatageneration.triangle
From Line 33 to Line 37, if it is in the scenario of num1 being equal to num2 but num2 is not equal to num3, the logic will regard the triangle as SCALENE, but actually, it should be ISOSCELES (num1 = num2).
The text was updated successfully, but these errors were encountered:
If you go through the code logic at line 35 with the example of (num1 = 3, num2 = 3 and num3 = 1) then, the code will output SCALENE. But actually, the triangle is ISOSCELES
It will not go into the else logic starting from line 38.
ruizi
changed the title
Something about the Triangle.class in the package of org.avmframework.examples.inputdatageneration.triangle
Something about the Triangle.class
Nov 22, 2022
Something about the
Triangle.class
in the package oforg.avmframework.examples.inputdatageneration.triangle
From Line 33 to Line 37, if it is in the scenario of num1 being equal to num2 but num2 is not equal to num3, the logic will regard the triangle as SCALENE, but actually, it should be ISOSCELES (num1 = num2).
The text was updated successfully, but these errors were encountered: