Skip to content

Instantly share code, notes, and snippets.

View aleciavogel's full-sized avatar

Alecia Vogel aleciavogel

View GitHub Profile
@aleciavogel
aleciavogel / ShapeCalculator.java
Last active November 29, 2025 00:27
Assignment #2 submission for CompSci 109 on Study.com
/**
* Assignment 2 for CompSci 109 on Study.com
* By: Alecia Vogel
* Date: November 28, 2025
* JDK: Oracle OpenJDK 25.0.1
* ------------------------------
* Calculate the areas of various shapes
*/
import java.util.Scanner;
@aleciavogel
aleciavogel / Main.java
Last active November 28, 2025 23:22
CompSci 109 - Assignment 1
/**
* Assignment 1 for CompSci 109 on Study.com
* By: Alecia Vogel
* Date: November 28, 2025
* JDK: Oracle OpenJDK 25.0.1
* ------------------------------
* This program determines all perfect numbers (numbers that have divisors that add up to the number)
* between 1-200 using nested loops.
*/
import java.util.ArrayList;