Name: Anonymous 2011-07-14 11:01
Best choice for a beginner?
if (a < b) {
doSomething();
} else {
doSomethingElse();
}
switch (a < b) {
case 1:
doSomething();
break;
case 0:
doSomethingElse();
}