C++ - lib_ cmath

 0    21 tarjetas    sir
descargar mp3 imprimir jugar test de práctica
 
término definición
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
empezar lección
hypot(x, y)
Returns the absolute value of x
empezar lección
abs(x)
fabs(x)
Returns the cube root of x
empezar lección
cbrt(x)
Returns the floating point remainder of x/y
empezar lección
fmod(x, y)
Returns the lowest value of a floating x and y
empezar lección
fmin(x, y)
Returns the highest value of a floating x and y
empezar lección
fmax(x, y)
Returns the value of x rounded up to its nearest integer
empezar lección
ceil(x)
Returns the value of x rounded down to its nearest integer
empezar lección
floor(x)
Returns the value of x to the power of y
empezar lección
pow(x, y)
Returns the absolute value of a floating x
empezar lección
fabs(x)
Returns the value of e^x
empezar lección
exp(x)
Returns the sine of x (x is in radians)
empezar lección
sin(x)
Returns the hyperbolic sine of a double value
empezar lección
sinh(x)
Returns the tangent of an angle
empezar lección
tan(x)
Returns the hyperbolic tangent of a double value
empezar lección
tanh(x)
Returns the cosine of x
empezar lección
cos(x)
Returns the hyperbolic cosine of x
empezar lección
cosh(x)
Returns the arccosine of x
empezar lección
acos(x)
Returns the arcsine of x
empezar lección
asin(x)
Returns the arctangent of x
empezar lección
atan(x)
Returns the cube root of x
empezar lección
cbrt(x)

Debes iniciar sesión para poder comentar.