fork(1) download
  1. #include <iostream>
  2. #include <limits>
  3.  
  4. int main()
  5. {
  6. std::cout << std::numeric_limits<double>::min() << std::endl;
  7. std::cout << std::numeric_limits<double>::epsilon() << std::endl;
  8. std::cout << std::numeric_limits<double>::lowest() << std::endl;
  9. }
  10.  
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
2.22507e-308
2.22045e-16
-1.79769e+308