Help for this page

Select Code to Download


  1. or download this
    while( 
           condition1 && 
    ...
    { 
      #statements;  
    }
    
  2. or download this
      while( 
      1    condition1 && 
    ...
    { 
      #statements;  
    }
    
  3. or download this
    open(A,"e:\\a\\a.txt")or die; 
    @a=<A>; 
    ...
      } 
     last if($a[$line]=~/\{/g); 
    }
    
  4. or download this
    while( 
            (  
    ...
    { 
      #statements; 
    }
    
  5. or download this
    while( 
            (  
    ...
              condition6 
             ) 
         )
    
  6. or download this
    while( 
          ( 
    ...
          6 condition6 
          ) 
         )