π的取得有很多方法,寫程式最快速的方法是使用內建常數 PI。
其次是使用函數。以下介紹兩種方式。
(ㄧ)使用 math.h 內建常數 M_PI,使用時需 #include <math.h>
範例:
#include <math.h>
int main(){
     cout << "π =" << M_PI;
}

(二)使用反三角函數。


範例:
#include <math.h>
int main(){
     cout << "π =" << atan(1)*4; //atan 就是 arcTan
}