Saturday, September 13, 2008

Java 04: If & Switch Statements



Here is an example of If Else statement. Please understand that it is NOT a part of the above video clip. It is provided for education purpose only.

if(boolean condition){
//the boolean was true so do this
}else {
//do something else
}