PDA

Click to See Complete Forum and Search --> :


Shadow_Hunter
Sep 19th, 2007, 02:11 PM
How in VB.net forums, do you √ something? What's the code? Thanks.

:F

03myersd
Sep 19th, 2007, 04:12 PM
To square root something in you code you do it to the power of 0.5. E.g.

Print 25 ^ 0.5

Would give 5.

Ivenesco
Sep 19th, 2007, 05:24 PM
For square root you can use:
Math.Sqrt()