Начало
Калькуляторы
Калькулятор косинуса
Войдите в смежное и угловые ценности гипотенузы, и JavaScript решит угол косинуса для Вас.
Adjacent Angle
Hypotenuse Angle
Cosine Angle
JavaScript Calculators: колькулятор косинуса
<!-- TWO STEPS TO INSTALL COSINE CALCULATOR: 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 calccos(form) { var adj = eval(form.adj.value); var hyp = eval(form.hyp.value); form.cos.value = adj/hyp; } // End --> </script> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <center> <form> <table border=3 cellspacing=2 cellpadding=5> <tr> <td align=center><i>Adjacent Angle</i></td> <td align=center><i>Hypotenuse Angle</i></td> <td align=center><i>Cosine Angle</i></td> </tr> <tr> <td align=center><input type=text name=adj size=15></td> <td align=center><input type=text name=hyp size=15></td> <td align=center><input type=text name=cos size=15></td> </tr> <tr> <td colspan=3 align=center><input type=button value="Calculate!" onclick="calccos(this.form)"></td> </tr> </table> </form> </center> <!-- Script Size: 1.19 KB -->