std::fmod
cppreference.com
[] |
Google. . , . , . |
<metanoindex/>
<tbody> </tbody> float fmod( float x, float y ); |
(1) | |
double fmod( double x, double y ); |
(2) | |
long double fmod( long double x, long double y ); |
(3) | |
Promoted fmod( Arithmetic x, Arithmetic y ); |
(4) | ( C++11) |
x/y , , x-ny n, y.:
Computes the remainder of the division operation
x/y, that is, the value x-ny for some integer n such that the magnitude of the result is less than the magnitude of y.4)
- ,
double. long double, long double, double.:
If any argument has integral type, it is cast to
double. If any other argument is long double, then the return type is long double, otherwise it is double.| x, y |
. ,
x..
(C++11) |
() |
(C++11)(C++11)(C++11) |
() |