Square root: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle Created page with '{{ #vardefine:name|min}}{{ #vardefine:return_type|int}}{{ FunctionPage| name={{#var:name}}| function_category=Math and Numbers| function1={{Function| name={{#var:name}}| aggreg…' |
imported>StDoodle mNo edit summary |
||
Line 1: | Line 1: | ||
{{ | {{ | ||
#vardefine:name| | #vardefine:name|square_root}}{{ | ||
#vardefine:return_type|int}}{{ | #vardefine:return_type|int}}{{ | ||
Line 20: | Line 20: | ||
needscode=yes| | needscode=yes| | ||
}} | }} |
Revision as of 19:52, 10 March 2010
needs(code_samples);
Function Syntax
float square_root(float number )
- number is the number to find the root of
Returns the square root of the specified number. Note that it is possible supply an int type number as the parameter number, in which case it will be transparently converted to a float; the value returned will still be of float type (even if the int value would be equal, such as specifying 4 as number).