for i=1 to 5 
  if i<>4 then
    ...
  endif
next i相当于for (i=1;i<6;i++)
  {
  ...
  if (i==4) continue;
  }