C++ - lib_ cmath

 0    21 speciālā zīme    sir
lejupielādēt mp3 Drukāt spēlēt pārbaudiet sevi
 
jautājums atbilde
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
sākt mācīties
hypot(x, y)
Returns the absolute value of x
sākt mācīties
abs(x)
fabs(x)
Returns the cube root of x
sākt mācīties
cbrt(x)
Returns the floating point remainder of x/y
sākt mācīties
fmod(x, y)
Returns the lowest value of a floating x and y
sākt mācīties
fmin(x, y)
Returns the highest value of a floating x and y
sākt mācīties
fmax(x, y)
Returns the value of x rounded up to its nearest integer
sākt mācīties
ceil(x)
Returns the value of x rounded down to its nearest integer
sākt mācīties
floor(x)
Returns the value of x to the power of y
sākt mācīties
pow(x, y)
Returns the absolute value of a floating x
sākt mācīties
fabs(x)
Returns the value of e^x
sākt mācīties
exp(x)
Returns the sine of x (x is in radians)
sākt mācīties
sin(x)
Returns the hyperbolic sine of a double value
sākt mācīties
sinh(x)
Returns the tangent of an angle
sākt mācīties
tan(x)
Returns the hyperbolic tangent of a double value
sākt mācīties
tanh(x)
Returns the cosine of x
sākt mācīties
cos(x)
Returns the hyperbolic cosine of x
sākt mācīties
cosh(x)
Returns the arccosine of x
sākt mācīties
acos(x)
Returns the arcsine of x
sākt mācīties
asin(x)
Returns the arctangent of x
sākt mācīties
atan(x)
Returns the cube root of x
sākt mācīties
cbrt(x)

Lai ievietotu komentāru, jums jāpiesakās.