Question: The method below checks if 3 non-negative numbers form a Pythagorean Triple. This situation occurs when the sum of the squares of two of the

The method below checks if 3 non-negative numbers form a Pythagorean Triple. This situation occurs when the sum of the squares of two of the first two numbers equals the square of the third. For what reason would the code sometimes incorrectly return false, when provided with 3 numbers that are actually a Pythagorean Triple?

public boolean isPythagTriple(double a, double b, double c)

{

double d = (a*a + b*b);

double e = (c*c);

return (d == e);

}

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!