Guest User

Untitled

a guest
Mar 19th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int a = 5;
  2. int b = 5;
  3. int c = 5;
  4. int d = 5;
  5. int e = 5;
  6. int f = 5;
  7.  
  8. a += a++; //10
  9. b += b++ + ++b + b++; //24
  10. c = c++ + c++; //11
  11. d = d++ + ++d + d++ + ++d; //28
  12. e += e++ + ++e + e++ + ++e; //33
  13. f = f++; //5
Add Comment
Please, Sign In to add comment