Welcome to CompSci! This course teaches multiple types of code, including HTML, javascript, java, and some mobile coding as well. This allows for almost anything to be built, and being able to build these programs all on our own is a constant positive challenge.
Sieve of Eratosthenes
The Sieve is a method of finding all prime numbers from 1 to any given number by removing all of the multiples of the prime numbers. We were asked to code a working version of this program, and have it display all prime numbers in four digit format.
Line Art
This program generates a set of lines creating the curving corner effect for each of the four corners using loops to move the start and end points of straight lines for each corner. It was a particularly fun challenge trying to get the smaller set to fit perfectly inside the larger version.