Java Programming Tutorial - 13 - While Loop

package apples;


public class boy {
public static void main (String []args) {
int counter = 0;
while (counter<10) {
System.out.println(counter);
counter++;
}
}


}

Comments