Create to do list using Java

To-Do List application using Java, This implementation uses a console-based approach and allows users to:

  1. Add tasks

  2. View tasks

  3. Mark tasks as completed

  4. Delete tasks

  5. Exit the program

  • Latest Posts

  • Quick Links

Create To Do List using Java

  • Follow Us

Explanation of the Code:

  1. Task Class:

    • Stores task description and status (completed or not).

    • Methods: markAsCompleted(), toString(), etc.

  2. ToDoList Class:

    • Uses an ArrayList<Task> to store tasks.

    • Scanner for user input.

  3. Main Menu (Loop Until Exit):

    • 1. Add Task → User inputs a task, added to the list.

    • 2. View Tasks → Displays all tasks.

    • 3. Mark Task as Completed → Marks selected task as done.

    • 4. Delete Task → Removes selected task.

    • 5. Exit → Ends the program.