Difference between revisions of "Sqr"

From SCAR Divi Manual
Jump to: navigation, search
(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 00:04, 3 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

See Also