-
-
Notifications
You must be signed in to change notification settings - Fork 18
sqr
CryoEagle edited this page Dec 31, 2018
·
3 revisions
Returns x*x
sqr(x)
Argument | Description |
---|---|
double x |
The value for multiplies |
Returns: double
This function will multiplies input by itself.
sqr(5); //return 25
This code will return 25 because 5*5 equals 25.
Back to number_functions