Advertisement
Gireada

POO 1

Mar 8th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include <iomanip>
  4. #include <math.h>
  5.  
  6. using namespace std;
  7.  
  8.  
  9. int main()
  10. {
  11.     double x = sqrt(2);
  12.     for (int i = 1; i <= 20; i++)
  13.     {
  14.         cout << right << setw(21) << setprecision(i) << x << endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement