This repository contains a simple Pythagorean theorem calculator implemented in HTML, CSS, and JavaScript. The calculator takes input for two sides of a triangle and calculates the length of the third side using the Pythagorean theorem.
- Open the
pythagorean.html
file in a web browser. - Enter the length of side 1 in the input field provided.
- Enter the length of side 2 in the input field provided.
- Click the "Calculate" button.
- The result, which is the length of the third side, will be displayed below the button.
- HTML
- CSS
- JavaScript
This project is licensed under the MIT License. See the LICENSE file for more details.
This project was inspired by the need to calculate the length of the third side in a right-angled triangle using the Pythagorean theorem. It serves as a simple example of using HTML, CSS, and JavaScript together to solve a mathematical problem.