Hi, I'm new to c++ and really need your help to program as stated by topic.
I can't seem to get my main menu switch case to work. Whenever I select '1', its suppose to do OPTION1 functions... but it keeps showing output: Exiting Program
switch statements need a break after each one or it uses fall-through, which can be desired, but you don't appear to want that 'feature'.
so what happens is that when you type 1, it does all 8 cases because you did not break. (if you put in 3, it would do cases {3,4,5,6,7,8}
put a break in each case statement, and it should clear up.