Back to Home

Page 1

a Picture of a green goblin creature named Dongak

This paragraph will tell you everything you need to know about the first page of my portfolio!
Thank you for reading this paragraph.

  1. Project 1
  2. Project 2
  3. Project 2.5
  4. Project 5
a Picture of some green goo.
Here is a piece of code that does sumting something.
I don't remember what.
    public class Kelly1 {
        public static void main(String[] args) {
            int total = 0;
            for (int i = 0; i < 1000; i = i + 3) {
                total += i;
            }
            for (int i = 0; i < 1000; i = i + 5) {
                if (i % 3 != 0) {
                    total += i;
                }
            }
            System.out.println(total);
        }
    }