C++ - lib_ cmath

 0    21 карточка    sir
скачать mp3 Печать играть Проверьте себя
 
Вопрос Ответ
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
начать обучение
hypot(x, y)
Returns the absolute value of x
начать обучение
abs(x)
fabs(x)
Returns the cube root of x
начать обучение
cbrt(x)
Returns the floating point remainder of x/y
начать обучение
fmod(x, y)
Returns the lowest value of a floating x and y
начать обучение
fmin(x, y)
Returns the highest value of a floating x and y
начать обучение
fmax(x, y)
Returns the value of x rounded up to its nearest integer
начать обучение
ceil(x)
Returns the value of x rounded down to its nearest integer
начать обучение
floor(x)
Returns the value of x to the power of y
начать обучение
pow(x, y)
Returns the absolute value of a floating x
начать обучение
fabs(x)
Returns the value of e^x
начать обучение
exp(x)
Returns the sine of x (x is in radians)
начать обучение
sin(x)
Returns the hyperbolic sine of a double value
начать обучение
sinh(x)
Returns the tangent of an angle
начать обучение
tan(x)
Returns the hyperbolic tangent of a double value
начать обучение
tanh(x)
Returns the cosine of x
начать обучение
cos(x)
Returns the hyperbolic cosine of x
начать обучение
cosh(x)
Returns the arccosine of x
начать обучение
acos(x)
Returns the arcsine of x
начать обучение
asin(x)
Returns the arctangent of x
начать обучение
atan(x)
Returns the cube root of x
начать обучение
cbrt(x)

Вы должны войти в свой аккаунт чтобы написать комментарий.