fork download
  1. #include <cmath>
  2. #include <iostream>
  3. #include <iomanip>
  4.  
  5. int main() {
  6. double x = std::sqrt(7);
  7. std::cout << x * x << std::endl;
  8. std::cout << std::setprecision(20);
  9. std::cout << x * x << std::endl;
  10. }
  11.  
Success #stdin #stdout 0s 4392KB
stdin
Standard input is empty
stdout
7
7.0000000000000008882