System.Sqr
Delphi
function Sqr(X: <Real Int64 or Integer> ): Extended; overload;
function Sqr(X: <Real Int64 or Integer> ): Int64; overload;
function Sqr(X: <Real Int64 or Integer> ): Integer; overload;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.pas | System | System |
説明
指定した数の 2 乗を返します。
Delphi のコードでは,Sqr 関数は引数の 2 乗を返します。
X は浮動小数点型の式です。結果は X と同じ型で,X の 2 乗つまり X * X です。