C++ 数学运算
在 C++ 中,除了可以创建各种函数,还包含了各种有用的函数供您使用。这些函数写在标准 C 和 C++ 库中,叫做内置函数。您可以在程序中引用这些函数。
C++ 内置了丰富的数学函数,可对各种数字进行运算。下表列出了 C++ 中一些有用的内置的数学函数。
为了利用这些函数,您需要引用数学头文件 <cmath>。
序号 |
函数 & 描述 |
1 |
double cos(double); |
2 |
double sin(double); |
3 |
double tan(double); |
4 |
double log(double); |
5 |
double pow(double, double); |
6 |
double hypot(double, double); |
7 |
double sqrt(double); |
8 |
int abs(int); |
9 |
double fabs(double); |
10 |
double floor(double); |
下面是一个关于数学运算的简单实例:
实例
#include <iostream> #include <cmath> using namespace std; int main () { // 数字定义 short s = 10; int i = -1000; long l = 100000; float f = 230.47; double d = 200.374; // 数学运算 cout << "sin(d) :" << sin(d) << endl; cout << "abs(i) :" << abs(i) << endl; cout << "floor(d) :" << floor(d) << endl; cout << "sqrt(f) :" << sqrt(f) << endl; cout << "pow( d, 2) :" << pow(d, 2) << endl; return 0; }
当上面的代码被编译和执行时,它会产生下列结果:
sin(d) :-0.634939 abs(i) :1000 floor(d) :200 sqrt(f) :15.1812 pow( d, 2 ) :40149.7