Help for this page

Select Code to Download


  1. or download this
    while (1) {
         S;
         last if (B);
         T;
    }
    
  2. or download this
    do {
         S;
    } while (!B) {
         T;
    }
    
  3. or download this
    do {
         S;
    ...
    while (!B) {
         T;
    }
    
  4. or download this
    loop {
         S;
    } while (!B) {
         T;
    }