C++ - lib_ cmath

 0    21 fiche    sir
Télécharger mP3 Imprimer jouer consultez
 
question réponse
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
commencer à apprendre
hypot(x, y)
Returns the absolute value of x
commencer à apprendre
abs(x)
fabs(x)
Returns the cube root of x
commencer à apprendre
cbrt(x)
Returns the floating point remainder of x/y
commencer à apprendre
fmod(x, y)
Returns the lowest value of a floating x and y
commencer à apprendre
fmin(x, y)
Returns the highest value of a floating x and y
commencer à apprendre
fmax(x, y)
Returns the value of x rounded up to its nearest integer
commencer à apprendre
ceil(x)
Returns the value of x rounded down to its nearest integer
commencer à apprendre
floor(x)
Returns the value of x to the power of y
commencer à apprendre
pow(x, y)
Returns the absolute value of a floating x
commencer à apprendre
fabs(x)
Returns the value of e^x
commencer à apprendre
exp(x)
Returns the sine of x (x is in radians)
commencer à apprendre
sin(x)
Returns the hyperbolic sine of a double value
commencer à apprendre
sinh(x)
Returns the tangent of an angle
commencer à apprendre
tan(x)
Returns the hyperbolic tangent of a double value
commencer à apprendre
tanh(x)
Returns the cosine of x
commencer à apprendre
cos(x)
Returns the hyperbolic cosine of x
commencer à apprendre
cosh(x)
Returns the arccosine of x
commencer à apprendre
acos(x)
Returns the arcsine of x
commencer à apprendre
asin(x)
Returns the arctangent of x
commencer à apprendre
atan(x)
Returns the cube root of x
commencer à apprendre
cbrt(x)

Vous devez vous connecter pour poster un commentaire.