Advertisement
Toliak

v96

Sep 28th, 2018
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. #define ABS(x) ((x) < 0 ? -(x) : (x))
  4.  
  5. int main() {
  6.     double epsilon;
  7.     std::cin >> epsilon;
  8.     unsigned long long i1 = 0;
  9.     unsigned long long i2 = 0;
  10.     double v1 = 4, v2 = 3;
  11.     while(true) {
  12.         double current = v1 + (i1%2==0 ? -1 : 1) * (1/(3+2*i1));
  13.         if
  14.     }
  15.     std::cout << "Hello, World!" << std::endl;
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement