16 thoughts on “Programming

  1. Josh W. – Made a counter that counted to 9999999

    class Apples{
    public static void main(String args[]) {
    int counter = 0;
    while (counter < 9999999){

    System.out.println(counter);
    counter++;
    }
    }
    }

    Like

Leave a reply to mikillnhggr Cancel reply