How in VB.net forums, do you √ something? What's the code? Thanks.
:F
Printable View
How in VB.net forums, do you √ something? What's the code? Thanks.
:F
To square root something in you code you do it to the power of 0.5. E.g.
Would give 5.Code:Print 25 ^ 0.5
For square root you can use:
Code:Math.Sqrt()