Help for this page

Select Code to Download


  1. or download this
    while (EXPR) {
    } continue {
     STMTS;
    }
    
  2. or download this
    for(INIT;EXPR;INCR) { STMTS; }
    
  3. or download this
    { INIT; while (EXPR) { STMTS; } continue { INCR; } }