C++ - lib_ cmath

 0    21 flashcards    sir
tải về mp3 In chơi tự kiểm tra
 
câu hỏi câu trả lời
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
bắt đầu học
hypot(x, y)
Returns the absolute value of x
bắt đầu học
abs(x)
fabs(x)
Returns the cube root of x
bắt đầu học
cbrt(x)
Returns the floating point remainder of x/y
bắt đầu học
fmod(x, y)
Returns the lowest value of a floating x and y
bắt đầu học
fmin(x, y)
Returns the highest value of a floating x and y
bắt đầu học
fmax(x, y)
Returns the value of x rounded up to its nearest integer
bắt đầu học
ceil(x)
Returns the value of x rounded down to its nearest integer
bắt đầu học
floor(x)
Returns the value of x to the power of y
bắt đầu học
pow(x, y)
Returns the absolute value of a floating x
bắt đầu học
fabs(x)
Returns the value of e^x
bắt đầu học
exp(x)
Returns the sine of x (x is in radians)
bắt đầu học
sin(x)
Returns the hyperbolic sine of a double value
bắt đầu học
sinh(x)
Returns the tangent of an angle
bắt đầu học
tan(x)
Returns the hyperbolic tangent of a double value
bắt đầu học
tanh(x)
Returns the cosine of x
bắt đầu học
cos(x)
Returns the hyperbolic cosine of x
bắt đầu học
cosh(x)
Returns the arccosine of x
bắt đầu học
acos(x)
Returns the arcsine of x
bắt đầu học
asin(x)
Returns the arctangent of x
bắt đầu học
atan(x)
Returns the cube root of x
bắt đầu học
cbrt(x)

Bạn phải đăng nhập để đăng bình luận.