C++ - lib_ cmath

 0    21 fiche    sir
baixar mp3 Imprimir jogar verifique-se
 
questão resposta
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
começar a aprender
hypot(x, y)
Returns the absolute value of x
começar a aprender
abs(x)
fabs(x)
Returns the cube root of x
começar a aprender
cbrt(x)
Returns the floating point remainder of x/y
começar a aprender
fmod(x, y)
Returns the lowest value of a floating x and y
começar a aprender
fmin(x, y)
Returns the highest value of a floating x and y
começar a aprender
fmax(x, y)
Returns the value of x rounded up to its nearest integer
começar a aprender
ceil(x)
Returns the value of x rounded down to its nearest integer
começar a aprender
floor(x)
Returns the value of x to the power of y
começar a aprender
pow(x, y)
Returns the absolute value of a floating x
começar a aprender
fabs(x)
Returns the value of e^x
começar a aprender
exp(x)
Returns the sine of x (x is in radians)
começar a aprender
sin(x)
Returns the hyperbolic sine of a double value
começar a aprender
sinh(x)
Returns the tangent of an angle
começar a aprender
tan(x)
Returns the hyperbolic tangent of a double value
começar a aprender
tanh(x)
Returns the cosine of x
começar a aprender
cos(x)
Returns the hyperbolic cosine of x
começar a aprender
cosh(x)
Returns the arccosine of x
começar a aprender
acos(x)
Returns the arcsine of x
começar a aprender
asin(x)
Returns the arctangent of x
começar a aprender
atan(x)
Returns the cube root of x
começar a aprender
cbrt(x)

Você deve entrar para postar um comentário.