C++中的math庫提供了一些數學函數和常量,可以用來進行數學運算和計算。使用math庫需要包含頭文件
以下是一些常用的math庫函數和常量:
示例代碼:
#include <iostream>
#include <cmath>
int main() {
double x = 2.5;
std::cout << "Square root of " << x << " is " << sqrt(x) << std::endl;
std::cout << "2 to the power of 3 is " << pow(2, 3) << std::endl;
std::cout << "sin(PI/2) is " << sin(M_PI/2) << std::endl;
return 0;
}
以上是math庫的基本使用方法,更多詳細的函數和常量可以查閱C++標準庫的文檔。