Pi In C++ Cmath Code Example


Example 1: pi in c++

#define _USE_MATH_DEFINES // must include this!   #include <cmath> #include <iostream>   int main() {    // M_PI = 3.14159265358979323846;   std::cout << M_PI << " " << M_E << " " << M_SQRT2 << endl;   return 0; }

Example 2: c++ pi float

const float pi = 2 * acos(0.0f);

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?