如何使用JavaScript计算圆的周长和面积
在本文中,我们将看到如何使用JavaScript计算圆的周长和面积。计算圆的周长和面积的数学公式如下:
圆的面积 = π * r * r
圆的周长 = 2 * π * r
这两个公式都需要 PI 的值。因此,在JavaScript中,我们必须使用 Math.PI 属性来获取 PI 的值。
让我们看一个示例来计算圆的周长和面积。
示例
在这个示例中,圆的半径是20cm。我们必须点击给定的 HTML按钮 来获取面积和周长。
<!DOCTYPE html>
<html>
<head>
<title>
Math.PI
</title>
</head>
<body>
<h2>
Welcome to the javaTpoint.com
</h2>
<p> Here the radius of circle is 20cm </p>
<p>
Click the following button to get the area and perimeter of circle.
</p>
<p id = "para"></p>
<p id = "para1"></p>
<button onclick = "fun()"> Click me </button>
<script>
var r = 20;
function fun()
{
document.getElementById('para').innerHTML = 'The area of circle with radius 20cm is: ' + Math.PI * r * r ;
document.getElementById('para1').innerHTML = 'The perimeter of circle with radius 20cm is: ' + 2 * Math.PI * r ;
}
</script>
</body>
</html>
输出
执行上述代码并点击给定的按钮后,输出将如下所示 –