Name: Anonymous 2012-10-29 13:02
if(1){
DoThis();
}
else{
DoThat();
}
if(1){
DoThis();
}
else{
DoThat();
}
int counter = 0;
for(;;) {
if(counter < 10) {
DoSomethingBro();
} else {
break;
}
counter++;
}