fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main ()
  5. {
  6. double pi = 3.141592653589793;
  7. std::cout << std::to_string(pi) << std::endl;
  8. return 0;
  9. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
3.141593