I won't give you the code on this but I would try this. First build four functions. One to add, one to subtract, one to multiply, and to divide. To make this as simple as possible each function should ask you for your numbers this way you don't have to worry so much about passing variables to to each function.
I would also create a menu this is really just artistic play on output in the console screen.
Then your switch statement should be able to direct you to each function depending on which one you choose. Keep in mind that switch statement can only go to functions that return an integral value, so your function should be declared something like int add (void);
If you need an idea of what a switch statement should look like check out this topic:
Grade BookThis is a program that I wrote which relies heavily on this switch statement. I built my switch statement in it's own function so that I could use the menu option selected in the rest of my program. In your case your won't have to do this, you can just do it in main. I would recommend though that you look up switch statements and especially on what you should do with a default statement as that will help you with data validation.
hope this helps