100LinesOfCode icon indicating copy to clipboard operation
100LinesOfCode copied to clipboard

To do list using java

Open Dev-Aditya-More opened this issue 1 year ago • 0 comments

This pull request adds a simple console-based To-Do List application written in Java.
The application allows users to:

* Add tasks to a list
* Remove tasks by their index
* View all tasks in the current list
* Exit the application via a user-friendly menu

Key Features:

* Task Class: Encapsulates the task's description as an object.
* ArrayList Management: Uses an ArrayList to dynamically manage the tasks.
* Console Menu: Provides an interactive user interface for adding, removing, and viewing tasks.
* Input Validation: Ensures users don't remove tasks that don't exist and handles invalid input gracefully.

Dev-Aditya-More avatar Sep 17 '24 16:09 Dev-Aditya-More