Diameter of a circle
on the form i have only one textbox for # OF PEOPLE:
here is my code so far...
const Pi as decimal = 3.141593D
Dim Radius , area as decimal
dim isConverted as boolean
isconverted = decimal.tryparse(txtpeople.text,radius)
area = pi*radius *radius
Here is my problem the above formula give the Area I dont need the area I need the Diameter, so
Diameter = R*2/5280 ?.......
Please help...

