Advertisement
thenewboston

Java Programming Tutorial - 13 - While Loop

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