README.md What the Program Does
Lets you add tasks
Lets you see all tasks
Lets you remove a task by number
Lets you exit the program
How It Works
The program shows a menu with 4 options.
You pick what you want to do by typing the number (1–4).
Tasks are stored in an ArrayList.
Input is handled with Scanner.
I added some checks so if the user types something wrong, the program won’t crash.
Example.. === Welcome to the To Do List Manager ===
Please choose an option:
- Add a new task
- View all tasks
- Remove a task
- Exit
Enter choice: 1 Enter your new task: Study for exam Task added!
Main program file ---ToDoListManager.java
How to Run
Download or clone this repo.
Open the folder in your IDE or terminal.
Compile the file javac ToDoListManager.java run java ToDoListManager
By Marvin Trevizo