Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. /*###Begin banned keyword - each of the following line if appear in code will raise error. regex supported
  2. define
  3. include
  4. using
  5. ;
  6. ###End banned keyword*/
  7. #include <iostream>
  8. #include <iomanip>
  9. #include <limits>
  10. #include <cmath>
  11.  
  12. using namespace std;
  13.  
  14.  
  15.  
  16. int main()
  17. {
  18.  
  19. long double x;
  20.  
  21.  
  22. cin >> x;
  23. cout << std::left << setprecision(16) << 1.2222222222222222
  24. << endl;
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement