Prison Break

public class Show(){
    private int max = 5; // Seasons :1-4 + "The Final Break" = 5

    public void watchBoxSet(){
         for(int i=1; i <= max; i++){
               watch(i);  
         }
    }

    public void watch(int season){
          if(season%2!=0){
                break;
          }else{
                   run();        
           }
    }

    public static void main(String [] args){
                watchBoxSet();
    }
}
Vote up this code0