加载中...

平方根函数的使用


调试运行

<html>
<head>
<title>平方根函数的使用</title>
</head>
<body>
<script language="javascript">
<!--
	n = prompt("请输入一个要平方根的数:");
	document.write(n,"的平方根为:",Math.sqrt(n));
//-->
</script>
</body>
</html>

还没有评论.