名前空間
変種
操作

std::round, std::lround, std::llround

提供: cppreference.com
< cpp‎ | numeric‎ | math

 
 
 
一般的な数学関数
関数
基本的な演算
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
指数関数
(C++11)
(C++11)
(C++11)
(C++11)
冪関数
(C++11)
(C++11)
三角関数と双曲線関数
(C++11)
(C++11)
(C++11)
誤差関数とガンマ関数
(C++11)
(C++11)
(C++11)
(C++11)
最も近い整数
roundlroundllround
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
浮動小数点操作関数
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
分類および比較
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
マクロ定数
(C++11)(C++11)(C++11)(C++11)(C++11)
 
ヘッダ <cmath> で定義
float round( float arg );
(C++11およびそれ以降)
double round( double arg );
(C++11およびそれ以降)
long double round( long double arg );
(C++11およびそれ以降)
double round( Integral arg );
(C++11およびそれ以降)
long lround( float arg );
(C++11およびそれ以降)
long lround( double arg );
(C++11およびそれ以降)
long lround( long double arg );
(C++11およびそれ以降)
long lround( Integral arg );
(C++11およびそれ以降)
long long llround( float arg );
(C++11およびそれ以降)
long long llround( double arg );
(C++11およびそれ以降)
long long llround( long double arg );
(C++11およびそれ以降)
long long llround( Integral arg );
(C++11およびそれ以降)
argに最も近い整数を計算します。数が中途半端なケースではゼロから離れて丸められます
Original:
Computes nearest integer to arg. Number is rounded away from zero in halfway cases
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] パラメータ

arg -
浮動小数点値
Original:
floating point value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] 値を返します

argに最も近い整数.
Original:
Nearest integer to arg.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
[[Image:
値を返します
Original:
{{{2}}}
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
|200x200px]]
Argument

[編集] 参照

指定された値より大きくない最も近い整数を返します
(関数) [edit]
指定された値より小さくない最も近い整数を返します
(関数) [edit]
(C++11)
指定された値より絶対値が大きくない最も近い整数を返します
(関数) [edit]