Name: Anonymous 2012-10-29 13:02
if(1){
DoThis();
}
else{
DoThat();
}
if(1){
DoThis();
}
else{
DoThat();
}
bool isEqual(int a, int b) {
if (a == b) {
return true;
} else if (a != b) {
return false;
} else {
printf("Error");
}
}