C++ - lib_ cmath

 0    21 fiszek    sir
ściągnij mp3 drukuj graj sprawdź się
 
Pytanie Odpowiedź
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
rozpocznij naukę
hypot(x, y)
Returns the absolute value of x
rozpocznij naukę
abs(x)
fabs(x)
Returns the cube root of x
rozpocznij naukę
cbrt(x)
Returns the floating point remainder of x/y
rozpocznij naukę
fmod(x, y)
Returns the lowest value of a floating x and y
rozpocznij naukę
fmin(x, y)
Returns the highest value of a floating x and y
rozpocznij naukę
fmax(x, y)
Returns the value of x rounded up to its nearest integer
rozpocznij naukę
ceil(x)
Returns the value of x rounded down to its nearest integer
rozpocznij naukę
floor(x)
Returns the value of x to the power of y
rozpocznij naukę
pow(x, y)
Returns the absolute value of a floating x
rozpocznij naukę
fabs(x)
Returns the value of e^x
rozpocznij naukę
exp(x)
Returns the sine of x (x is in radians)
rozpocznij naukę
sin(x)
Returns the hyperbolic sine of a double value
rozpocznij naukę
sinh(x)
Returns the tangent of an angle
rozpocznij naukę
tan(x)
Returns the hyperbolic tangent of a double value
rozpocznij naukę
tanh(x)
Returns the cosine of x
rozpocznij naukę
cos(x)
Returns the hyperbolic cosine of x
rozpocznij naukę
cosh(x)
Returns the arccosine of x
rozpocznij naukę
acos(x)
Returns the arcsine of x
rozpocznij naukę
asin(x)
Returns the arctangent of x
rozpocznij naukę
atan(x)
Returns the cube root of x
rozpocznij naukę
cbrt(x)

Musisz się zalogować, by móc napisać komentarz.