abs(int)

整数の絶対値を返す

int abs(
    int nValue
);

Parameters

nValue

絶対値を取りたい整数値


Description

nValueの値の絶対値を返す。数値が負の場合はマイナスを取り除いた正の数値となる。



Version

1.22

Example

int nHigh = 12;
int nHighAbs = abs(nHigh);
// nHighAbsは12となる。

int nLow = -9;
int nLowAbs = abs(nLow);
// nLowAbsは9となる。

See Also

functions: fabs
categories: Math Functions


author: Charles Feduke, editor: Jeff Lindsey, JP team: ngtaicho
Send comments on this topic.