Create an application that implements a Vector and provides a user interface for adding strings, deleting strings and displaying the contents of the vector.  Traverse the Vector using an iterator.

For example you might use an input dialog to give a menu:

1: add
2: delete
3: display

If the user selects 1 you would then provide a dialog to get the string:

Please input the string.

For delete, either delete or tell the user that the string is not in the Vector.

For display you can output to the console or whatever you decide.