C ++数学


C ++数学

C ++には、数値に対して数学的なタスクを実行できるようにする多くの関数があります。


最大値と最小値

この関数を使用して、xyの最大値を見つけることができます。max(x,y)

cout << max(5, 10);

そして、この関数を使用して、 xyの最小値を見つけることができます。min(x,y)

cout << min(5, 10);

C ++ <cmath>ヘッダー

sqrt(平方根)、round(数値の丸め)、log (自然対数)などの他の関数は、<cmath>ヘッダーファイルにあります。

// Include the cmath library
#include <cmath>

cout << sqrt(64);
cout << round(2.6);
cout << log(2);

その他の数学関数

(ライブラリからの)他の人気のある数学関数のリストは<cmath>、以下の表にあります。

Function Description
abs(x) Returns the absolute value of x
acos(x) Returns the arccosine of x
asin(x) Returns the arcsine of x
atan(x) Returns the arctangent of x
cbrt(x) Returns the cube root of x
ceil(x) Returns the value of x rounded up to its nearest integer
cos(x) Returns the cosine of x
cosh(x) Returns the hyperbolic cosine of x
exp(x) Returns the value of Ex
expm1(x) Returns ex -1
fabs(x) Returns the absolute value of a floating x
fdim(x, y) Returns the positive difference between x and y
floor(x) Returns the value of x rounded down to its nearest integer
hypot(x, y) Returns sqrt(x2 +y2) without intermediate overflow or underflow
fma(x, y, z) Returns x*y+z without losing precision
fmax(x, y) Returns the highest value of a floating x and y
fmin(x, y) Returns the lowest value of a floating x and y
fmod(x, y) Returns the floating point remainder of x/y
pow(x, y) Returns the value of x to the power of y
sin(x) Returns the sine of x (x is in radians)
sinh(x) Returns the hyperbolic sine of a double value
tan(x) Returns the tangent of an angle
tanh(x) Returns the hyperbolic tangent of a double value

C ++演習

エクササイズで自分をテストする

エクササイズ:

正しい関数を使用して、との最大値を出力xyます。

int x = 5;
int y = 10;
cout << (x, y);