Pythagorean
Triples
Execution speed test
Pythagorean Triples A right triangle can have sides that are all integers. A set of three integer values for the sides of a right triangle is called a Pythagorean triple. These three sides must satisfy the relationship that the sum of the squares of two of the sides is equal to the square of the hypotenuse. I.e. side a squared plus side b squared equals the hypotenuse squared in a right triangle. So a2 + b2 = c2 This is a program that finds all Pythagorean triples for side1, side2, and the hypotenuse. The program uses a triple-nested for loop that tries all possibilities. This is an example of "brute force" computing. The answers are displayed in a list box. In any graphical system, screen updates are CPU intensive. To get a more accurate accounting of true execution speed, entering a negative number will suppress the output. Also the elapsed time for the program to compute the solution is displayed. |
Java primitive data types
to represent numbers. Integers
Floating point
|
The problem exercise has
been written using each of the primitive data types. The exercise was
run on an IBM R40 laptop that contains a 32 bit Intel mobile P4 CPU.
If this exercise was run on a 64 bit processor, such as the Intel Itanium 64 bit processor or the AMD Opteron, would all data types take about the same length of time to execute? If anyone know the answer to this question, email me at abenusa@ridgewater.mnscu.edu. |
Byte data type.
|
Short data type.
|
Int data type.
|
Long data type.
|
Float data type.
|
Double data type.
|