Bugs R Us 2: The Algorithmic Angst

Binary Bloopers 2: A Guide to Debugging Disaster

Warning: this page is a maze of twisty little passages that will drive you insane.

Or, you know, just a normal Tuesday.

public class BloopingBug {
	public static void main(String[] args) {
		int x = 5;
		x = x + 1;
		x = 3;
		x = 2;
		System.out.println(x);
	}
}

What could possibly go wrong?

Back to Binary Bloopers 2 Back to Bugs R Us 2 Back to Algorithmic Angst Back to the Top of this Never-Ending Labyrinth