Advertisement
thenewboston

Java Programming Tutorial - 24 - do while Loops

Aug 22nd, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. class apples{
  2.    public static void main(String[] args){
  3.       int counter = 0;
  4.  
  5.       do{
  6.          System.out.println(counter);
  7.          counter++
  8.       }while(counter <=10);
  9.    }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement