-
-
Notifications
You must be signed in to change notification settings - Fork 20
sqrt
CryoEagle edited this page Dec 31, 2018
·
4 revisions
Returns the square root of value. Value cannot be a negative value.
sqrt(x)| Argument | Description |
|---|---|
double x |
The number to get the square root of |
Returns: double
When you multiplies number by itself like 5 * 5 = 25 you can make it reverse with sqrt because it will find the root value.
sqrt(25); //return 5This code will find root number from value 25, of course it will return 5.
Back to number_functions