This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ========================================= | |
# 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 = [] |