std::round, std::lround, std::llround
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
ヘッダ <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.
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.
You can help to correct and verify the translation. Click here for instructions.
[[Image:
値を返します
|200x200px]]Original:
{{{2}}}
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Argument
[編集] 参照
指定された値より大きくない最も近い整数を返します (関数) | |
指定された値より小さくない最も近い整数を返します (関数) | |
(C++11) |
指定された値より絶対値が大きくない最も近い整数を返します (関数) |