Okay, so I've been working on a program that will allow the user to input what items they want into an array and make the output look like this:
Item 1. Sword
Item 2. Shield
Item 3. Sword
Item 4. Armor
with some help, i was able to figute that part out. Now I need to make it so I can delete an item from the list. So if the user decides they don't want two swords, they can input 2 and it outputs:
Item 1. Sword
Item 2. Shield
Item 3. Armor
I've tried the delete function and that showed no results. So at the moment, I can only think of changing everything into a vector, but i was hoping I could do something that didn't need to redo what i've already done. Pease help.