<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class Repeat_do_while
{
  public static void main(String args[])
  {

    int    count = 1;
    int    stop  = 4;
    
    do { 
      System.out.println(count);
      ++count;
    } while(count &lt; stop);
  }
}
</pre></body></html>