Спасибо. Продолжение темы Скрипт не работает
<script>
var x1, x2, x3, res;
x1 = window.promt ("input x1", "");
x2 = window.promt ("input x2", "");
x3 = window.promt ("input x3", "");
res=(Math.sin(x1)+Math.sin(x2)+Math.sin(x3))/3;
document.write ("Result = "+res);
</script>
|