C++ - lib_ cmath

 0    21 cartonașe    sir
descarcă mp3 printează joacă Testează-te
 
Întrebare Răspuns
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
începe să înveți
hypot(x, y)
Returns the absolute value of x
începe să înveți
abs(x)
fabs(x)
Returns the cube root of x
începe să înveți
cbrt(x)
Returns the floating point remainder of x/y
începe să înveți
fmod(x, y)
Returns the lowest value of a floating x and y
începe să înveți
fmin(x, y)
Returns the highest value of a floating x and y
începe să înveți
fmax(x, y)
Returns the value of x rounded up to its nearest integer
începe să înveți
ceil(x)
Returns the value of x rounded down to its nearest integer
începe să înveți
floor(x)
Returns the value of x to the power of y
începe să înveți
pow(x, y)
Returns the absolute value of a floating x
începe să înveți
fabs(x)
Returns the value of e^x
începe să înveți
exp(x)
Returns the sine of x (x is in radians)
începe să înveți
sin(x)
Returns the hyperbolic sine of a double value
începe să înveți
sinh(x)
Returns the tangent of an angle
începe să înveți
tan(x)
Returns the hyperbolic tangent of a double value
începe să înveți
tanh(x)
Returns the cosine of x
începe să înveți
cos(x)
Returns the hyperbolic cosine of x
începe să înveți
cosh(x)
Returns the arccosine of x
începe să înveți
acos(x)
Returns the arcsine of x
începe să înveți
asin(x)
Returns the arctangent of x
începe să înveți
atan(x)
Returns the cube root of x
începe să înveți
cbrt(x)

Trebuie să te autentifici pentru a posta un comentariu.