fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout << 3.14159265358979 << endl;
  6.  
  7. cout << fixed << setprecision(10);
  8.  
  9. cout << 3.14159265358979 << endl;
  10.  
  11. cout << defaultfloat;
  12.  
  13. cout << 3.14159265358979 << endl;
  14. }
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
3.14159
3.1415926536
3.141592654