0
How to calculate an area of a circle
I need to calculate the area of a circle using import.math
4 Antworten
+ 1
Area=Math.PI×Math.pow(radius, 2);
I think this is more correct...
+ 5
area=π×Math.pow(radius);
+ 1
The best way to calculate this (I think) is to use the area of a circle most math import packages include a pi value
0
pie*r*2*2
thats mean pie multiply by square of radius...