How can I find the square root of something?
In my program I need to be able to find the square root of something. I know I could use a while statement, but the user is going to be entering a few numbers in so the square root isnt always going to come out exact, it is going to come out in decimals as a float.
I am using the quad formula, and I made the stuff under the square root a variable to make it a tad easier for a different part of my program. But I cant figure out how to find out the square root of something.

