Pot en CIA

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

<html>

<head><title>potencia</title></head>

<body>

<form name="xxx">

valor <input type="text" name="val"><br>

potencia <input type="text" name="pot"><br>

resultado <input type="text" name="res"><br>

<input type="BUTTON" name="cal" value="calcular" onClick="a()">

</form>

<SCRIPT languaje="JavaScript">

function a()

var x1=0;

var x2=0;

x1=document.xxx.val.value;

x2=document.xxx.pot.value;

for (var x=2;x<=x2;x++)

x1=x1*document.xxx.val.value;

document.xxx.res.value=x1;

</SCRIPT>

</body>

</html>

You might also like