Guest User

Untitled

a guest
Jul 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class FooClass {
  2. public static void main(String[] args) {
  3. int foo = 1;
  4. System.out.println(++foo + ++foo); // outputs 5
  5.  
  6. int bar = 1;
  7. System.out.println(++bar + bar++); // outputs 4
  8. }
  9. }
Add Comment
Please, Sign In to add comment