Difference between revisions of "Sqr"
From SCAR Divi Manual
(→Description) |
(→See Also) |
||
Line 25: | Line 25: | ||
*[[Sqrt]] | *[[Sqrt]] | ||
*[[Pow]] | *[[Pow]] | ||
+ | *[[Exp]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Math Functions]] | [[Category:Math Functions]] |
Revision as of 23:04, 2 July 2011
Definition
function Sqr(X: Extended): Extended;
Availability
SCAR Divi 3.00 > Current
Description
Returns the square number value of X.
Example
begin WriteLn(Sqr(2)); WriteLn(Sqr(4)); end.
Output:
4 16