/*
A right-angle triangle with integer sides a, b, c, such as 3, 4, 5,
is called a Pythagorean triple. The condition is that hypotenuse to
power of 2 is equal to adding of square of the 2 other sides. In
this example 25 = 16 + 9. Use brute force approach to find all the
triples such that no side is bigger than 50.
For this you should first implement the following Triangle class
and its methods. Then use...