Начало
Калькуляторы
Теорема Пифагора
Одна из самых полезных формул геометрии, теоремы Пифагора, может быть применена к числам, в которые Вы входите в JavaScript! Только вступите и 'B', и подлинник решает для 'C'.
The Pythagorean Theorem
( a
2
+ b
2
= c
2
)
2
+
2
=
JavaScript Calculators: теорема пифагора
<!-- TWO STEPS TO INSTALL PYTHAGOREAN THEOREM: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available online free at --> <! > <!-- Begin function solvepy(form) { a = parseInt(form.a.value); b = parseInt(form.b.value); form.c.value = Math.sqrt(a*a + b*b); } // End --> </script> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <form> <center> The Pythagorean Theorem <p> <tt>( a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup> )</tt> <p> <input type=text name=a size=3><sup>2</sup> + <input type=text name=b size=3><sup>2</sup> = <input type=text name=c size=8> <p> <input type=button value="Solve" onClick="solvepy(this.form)"> </form> </center>