In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "javascript how to find the area and perimeter of the circle", the content of the explanation is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "javascript how to find the area and perimeter of the circle" bar!
The method of calculating the circle area and perimeter: 1, using the PI attribute of the Math object and the pow () method to calculate the area of the circle, the syntax is "Math.PI * Math.pow (radius, 2)"; 2, using the PI attribute of the Math object to calculate the perimeter of the circle, the syntax is "2 * Math.PI * radius".
The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.
How to find the area and perimeter of a circle by javascript
You can use the Math object in JavaScript to perform mathematical operations, and the Math object is used to perform mathematical tasks.
The Math object is not a class of objects like Date and String, so there is no constructor Math ().
For example:
Var x = Math.PI; / / returns PIvar y = Math.sqrt (16); / / returns the square root of 16
There is also the pow () method
The syntax is:
Math.pow (XBI y)
The pow () method returns the y power of x.
Let's take a look at how to calculate the primary color area and perimeter based on an example, as follows:
Document / / rounding function round (number, X) {X = (! X? 2: X); return Math.round (number*Math.pow (10Magine X)) / Math.pow (10Magazine X);} var r = Number (prompt ('Please enter the radius of the circle')) If (! isNaN (r)) {var m = round (Math.PI * Math.pow (r, 2), 2); var c = round (2 * Math.PI * r); alert ('area =' + m +'\ n' + 'perimeter =' + c);} else {alert ('Please enter a number!');}
Output result:
After the input radius is 5, the output result:
Thank you for your reading, the above is the content of "how to find the area and perimeter of a circle in javascript". After the study of this article, I believe you have a deeper understanding of how to find the area and perimeter of a circle in javascript, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.