C++ - lib_ cmath

 0    21 adatlap    sir
letöltés mp3 Nyomtatás játszik ellenőrizze magát
 
kérdés válasz
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
kezdjen tanulni
hypot(x, y)
Returns the absolute value of x
kezdjen tanulni
abs(x)
fabs(x)
Returns the cube root of x
kezdjen tanulni
cbrt(x)
Returns the floating point remainder of x/y
kezdjen tanulni
fmod(x, y)
Returns the lowest value of a floating x and y
kezdjen tanulni
fmin(x, y)
Returns the highest value of a floating x and y
kezdjen tanulni
fmax(x, y)
Returns the value of x rounded up to its nearest integer
kezdjen tanulni
ceil(x)
Returns the value of x rounded down to its nearest integer
kezdjen tanulni
floor(x)
Returns the value of x to the power of y
kezdjen tanulni
pow(x, y)
Returns the absolute value of a floating x
kezdjen tanulni
fabs(x)
Returns the value of e^x
kezdjen tanulni
exp(x)
Returns the sine of x (x is in radians)
kezdjen tanulni
sin(x)
Returns the hyperbolic sine of a double value
kezdjen tanulni
sinh(x)
Returns the tangent of an angle
kezdjen tanulni
tan(x)
Returns the hyperbolic tangent of a double value
kezdjen tanulni
tanh(x)
Returns the cosine of x
kezdjen tanulni
cos(x)
Returns the hyperbolic cosine of x
kezdjen tanulni
cosh(x)
Returns the arccosine of x
kezdjen tanulni
acos(x)
Returns the arcsine of x
kezdjen tanulni
asin(x)
Returns the arctangent of x
kezdjen tanulni
atan(x)
Returns the cube root of x
kezdjen tanulni
cbrt(x)

Kommentár közzétételéhez be kell jelentkeznie.