Ailis,
<html>
<head><title>calculator</title><meta charset="utf-8">
<script type="text/javascript">
function calk() {
var y = document.form1.y.value;
if (y=='*') {
document.form1.rez.value=document.form1.x.value*document.form1.z.value}
else if (y=='/') {
document.form1.rez.value=document.form1.x.value/document.form1.z.value}
else if (y=='+') {
document.form1.rez.value=+document.form1.x.value + +document.form1.z.value}
else if (y=='-') {
document.form1.rez.value=document.form1.x.value-document.form1.z.value}
}
</script>
</head>
<body>
<form name="form1">
<p>Введите, пожалуйста, первое число:
<input type="text" size="10" maxlength="10" name="x">
</p>
<p>Введите, пожалуйста, знак действия:
<input type="text" size="3" maxlength="1" name="y">
</p>
<p>Введите, пожалуйста, второе число:
<input type="text" size="10" maxlength="10" name="z">
</p>
<p>РЕЗУЛЬТАТ:
<input type="text" size="10" maxlength="10" name="rez">
</p>
<input type="button" value="Рассчитать" onClick="calk()">
</form>
</body>
</html>