fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. double N = 1.3333337;
  7. printf("%.6lf\n",N);
  8.  
  9. //cout << fixed;
  10. //cout << setprecision(6) << N;
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4172KB
stdin
Standard input is empty
stdout
1.333334