How would you get a basic program to accept multiple entries? Right now I only know how to make a program that
1. Accepts input
2. Prints something
...and then it closes.
I would like to make it so that the user can repeatedly enter new inputs and receive new outputs without having to close and reopen the program. I'm going to guess it has something to do with loops, but I honestly have no idea.
Nevermind, I replaced the "cout << "You entered: " << stockname << "\n";"
with main() and it more or less does what I had planned. Thank you very much!