fork download
  1. #include <iomanip>
  2. #include <iostream>
  3. #include <string>
  4.  
  5. int main() {
  6. using namespace std::literals;
  7.  
  8. auto line = "502522545.566"s;
  9. auto num = std::stold(line);
  10.  
  11. std::cout << std::fixed << std::setprecision(3) << num << std::endl;
  12. }
Success #stdin #stdout 0s 3272KB
stdin
Standard input is empty
stdout
502522545.566