fork download
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. int main()
  5. {
  6. const double Rm = 8.3144621;
  7. std::cout << std::fixed;
  8. std::cout << std::setprecision(7) << Rm << std::endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
8.3144621