Site hosted by Angelfire.com: Build your free website today!
 

Conditional Statements - if

 if (age < 30 ) {
     System.out.println("You are not old enough");
 } else if (age < 59) {
     System.out println("You are middle aged");
 } else {
     System.out.println("You have earned experience points");
 }