C++ - lib_ cmath

 0    21 informačný list    sir
stiahnuť mp3 vytlačiť hrať Skontrolujte sa
 
otázka Odpoveď
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
začať sa učiť
hypot(x, y)
Returns the absolute value of x
začať sa učiť
abs(x)
fabs(x)
Returns the cube root of x
začať sa učiť
cbrt(x)
Returns the floating point remainder of x/y
začať sa učiť
fmod(x, y)
Returns the lowest value of a floating x and y
začať sa učiť
fmin(x, y)
Returns the highest value of a floating x and y
začať sa učiť
fmax(x, y)
Returns the value of x rounded up to its nearest integer
začať sa učiť
ceil(x)
Returns the value of x rounded down to its nearest integer
začať sa učiť
floor(x)
Returns the value of x to the power of y
začať sa učiť
pow(x, y)
Returns the absolute value of a floating x
začať sa učiť
fabs(x)
Returns the value of e^x
začať sa učiť
exp(x)
Returns the sine of x (x is in radians)
začať sa učiť
sin(x)
Returns the hyperbolic sine of a double value
začať sa učiť
sinh(x)
Returns the tangent of an angle
začať sa učiť
tan(x)
Returns the hyperbolic tangent of a double value
začať sa učiť
tanh(x)
Returns the cosine of x
začať sa učiť
cos(x)
Returns the hyperbolic cosine of x
začať sa učiť
cosh(x)
Returns the arccosine of x
začať sa učiť
acos(x)
Returns the arcsine of x
začať sa učiť
asin(x)
Returns the arctangent of x
začať sa učiť
atan(x)
Returns the cube root of x
začať sa učiť
cbrt(x)

Ak chcete pridať komentár, musíte byť prihlásený.