C/C++中使用PI(π)的方法

C/C++中使用PI(π)的方法:

  1. 使用math中的宏定义M_PI;
  2. 利用arccos(-1) = π,来计算π值;
  3. 使用类处直接使用 #define M_PI       3.14159265358979323846
#include 
#include 
#define _USE_MATH_DEFINES // 使用math.h中的M_PI宏定义需要
#include 

using namespace std;
int main()
{
	double pi1 = M_PI;
	cout << setprecision(30) << "pi1 = "  << pi1 << endl;

	double pi2 = acos(-1);
	cout <<  "pi2 = " << pi2 << endl;
        return 0;
}

运行结果:

pi1 = 3.141592653589793115997963468544185161590576171875
pi2 = 3.141592653589793115997963468544185161590576171875

原文链接:https://www.cnblogs.com/fortunely/p/15456448.html

 

 

你可能感兴趣的:(C++,c++)