Skip to content

Instantly share code, notes, and snippets.

@idefixcert
Created February 7, 2014 22:43
public class Zero {
public static void main(String[] args) {
int s = 10;
System.out.println(s++ - --s);
System.out.println(++s - s--);
System.out.println(s-- - ++s);
System.out.println(--s - s++);
System.out.println(s++ + --s + s++ + --s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment