fork(1) download
  1. #include <iostream>
  2. #include <float.h>
  3. #include <string>
  4. #include <sstream>
  5. using namespace std;
  6.  
  7. inline double convertToDouble(std::string const& s)
  8. {
  9. std::istringstream i(s);
  10. double x;
  11. if (!(i >> x)){
  12. //throw BadConversion("convertToDouble(\"" + s + "\")");
  13. cout <<"blad";
  14. }
  15. return x;
  16. }
  17.  
  18. size_t jakDlugiDouble() {
  19. string sDouble = to_string(DBL_MAX);
  20. return sDouble.size();
  21. }
  22.  
  23.  
  24. double czyLiczba () {
  25. string sLiczba = "";
  26. cin >> sLiczba;
  27. if (sLiczba.size() > jakDlugiDouble()) {
  28. //throw TooLongNumber("convertToDouble(\"" + s + "\")");
  29. }
  30. return convertToDouble(sLiczba);
  31. }
  32.  
  33.  
  34. int main() {
  35. //while(cin) {
  36. double liczba = czyLiczba();
  37. cout << ' ' << liczba<<endl;
  38. // }
  39. return 0;
  40. }
Success #stdin #stdout 0s 3436KB
stdin
-179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368
stdout
 -1.79769e+308