PLEASE HELP ** CODE NEEDED **

Write a simple todo list application. This will require use of classes, objects, and possibly structs. Here are the requirements:

1. Menu-driven - upon running the program, the user should be prompted to press one of the following:
1. View all Todos in list
2. Remove a todo item from the list
* if there are not any todos, the user should be prompted and sent back to the menu
* choose a todo from list based on title to delete
- 1. Pick up milk
- 2. Drop off son at baseball
3. Add a todo item to the list
* Take user input and add a todo to the list
4. Complete a todo item
* similar to delete, the user is shown a list of their todo items, and upon choosing one, the item is marked Done (true)
* user should be prompted accordingly
5. Quit
2. Todo item should be a class with the following private members:
1. Title - String
2. Done - Bool (true if done, false otherwise)
3. Todo class should have the following public functions:
1. Private
1. getTitle - return the todo's title
2. toggleTodo - toggle Done variable from true to false or vice-versa

When first running the program, an empty todo list (array) should be created for storing todo items as they're added. When displaying todo items from the list (delete and toggle methods above), simply display their index within the list and add one (1). After a user chooses a todo to delete or toggle, use that menu-choice and subtract one (1) to find the item in the list (array).
Write a simple todo list application

Did you mean to post this in the Jobs section?

Please carefully read:
http://www.catb.org/esr/faqs/smart-questions.html
Last edited on
Topic archived. No new replies allowed.