C++ - lib_ cmath

 0    21 flashcards    sir
mp3 indir Baskı oynamak kendini kontrol et
 
soru cevap
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
öğrenmeye başla
hypot(x, y)
Returns the absolute value of x
öğrenmeye başla
abs(x)
fabs(x)
Returns the cube root of x
öğrenmeye başla
cbrt(x)
Returns the floating point remainder of x/y
öğrenmeye başla
fmod(x, y)
Returns the lowest value of a floating x and y
öğrenmeye başla
fmin(x, y)
Returns the highest value of a floating x and y
öğrenmeye başla
fmax(x, y)
Returns the value of x rounded up to its nearest integer
öğrenmeye başla
ceil(x)
Returns the value of x rounded down to its nearest integer
öğrenmeye başla
floor(x)
Returns the value of x to the power of y
öğrenmeye başla
pow(x, y)
Returns the absolute value of a floating x
öğrenmeye başla
fabs(x)
Returns the value of e^x
öğrenmeye başla
exp(x)
Returns the sine of x (x is in radians)
öğrenmeye başla
sin(x)
Returns the hyperbolic sine of a double value
öğrenmeye başla
sinh(x)
Returns the tangent of an angle
öğrenmeye başla
tan(x)
Returns the hyperbolic tangent of a double value
öğrenmeye başla
tanh(x)
Returns the cosine of x
öğrenmeye başla
cos(x)
Returns the hyperbolic cosine of x
öğrenmeye başla
cosh(x)
Returns the arccosine of x
öğrenmeye başla
acos(x)
Returns the arcsine of x
öğrenmeye başla
asin(x)
Returns the arctangent of x
öğrenmeye başla
atan(x)
Returns the cube root of x
öğrenmeye başla
cbrt(x)

Yorum yapmak için giriş yapmalısınız.