Skip to content

Instantly share code, notes, and snippets.

View Kaicheee's full-sized avatar

Kaicheee

  • Joined Oct 12, 2025
View GitHub Profile
import java.time.LocalTime;
import java.util.Scanner;
import java.awt.Toolkit;
public class AlarmClock {
public static void main(String[] args) throws InterruptedException {
Scanner scanner = new Scanner(System.in);
int alarmHour = -1;
int alarmMinute = -1;
# =========================================
# Personal Budget Tracker
# This program lets a user track income and expenses,
# categorize them, and compare total spending to a monthly budget.
# =========================================
#Create empty lists to store income and expenses
income = []
expenses = []