C++ - lib_ cmath

 0    21 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
Returns sqrt(x^2 +y^2) without intermediate overflow or underflow
学び始める
hypot(x, y)
Returns the absolute value of x
学び始める
abs(x)
fabs(x)
Returns the cube root of x
学び始める
cbrt(x)
Returns the floating point remainder of x/y
学び始める
fmod(x, y)
Returns the lowest value of a floating x and y
学び始める
fmin(x, y)
Returns the highest value of a floating x and y
学び始める
fmax(x, y)
Returns the value of x rounded up to its nearest integer
学び始める
ceil(x)
Returns the value of x rounded down to its nearest integer
学び始める
floor(x)
Returns the value of x to the power of y
学び始める
pow(x, y)
Returns the absolute value of a floating x
学び始める
fabs(x)
Returns the value of e^x
学び始める
exp(x)
Returns the sine of x (x is in radians)
学び始める
sin(x)
Returns the hyperbolic sine of a double value
学び始める
sinh(x)
Returns the tangent of an angle
学び始める
tan(x)
Returns the hyperbolic tangent of a double value
学び始める
tanh(x)
Returns the cosine of x
学び始める
cos(x)
Returns the hyperbolic cosine of x
学び始める
cosh(x)
Returns the arccosine of x
学び始める
acos(x)
Returns the arcsine of x
学び始める
asin(x)
Returns the arctangent of x
学び始める
atan(x)
Returns the cube root of x
学び始める
cbrt(x)

コメントを投稿するにはログインする必要があります。