C++ 数学


C++ 数学

C++ 有许多函数可让您对数字执行数学任务。


最大和最小

这个max(x,y)函数可用于查找最大值Xy:

示例

cout << max(5, 10);
亲自试一试 »

还有min(x,y)函数可用于查找最小值Xy:

示例

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);

开始练习