Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. f(i) = 1 / ((2*i-2)*(2*i-3)*a*a);
  2.  
  3. float x, rez_one, rez_two, buf;
  4. pt>>x;
  5. buf = x*((-x)*(4*x-3)-2);
  6. rez_one = 1+buf;
  7. rez_two = 1-buf;
  8. pt<<rez_one;
  9. pt<<rez_two;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement