求圆的面积
用函数实现求圆形面积,并从键盘中获取半径,调用函数,得出面积
用函数实现求圆形面积,并从键盘中获取半径,调用函数,得出面积
2016-03-15
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function circle(){
const pi = 3.14159;
var r = prompt("圆的半径:");
alert(pi*r*r);
}
</script>
</head>
<body>
<input type="button" value="圆的面积" onclick="circle()" />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="utf-8">
<title>计算圆的面积</title>
<script type="text/javascript">
function area()
{
var r=document.getElementById("hello").value;
var _area=Math.PI*r*r;
alert(_area);
}
</script>
</head>
<body>
<input type="text" id="hello"></input>
<input type="button" value="计算圆的面积" onclick="area()"></input>
</body>
</html>
第一次回答问题0.0
举报