Nice for being a beginner at c++

Some ideas/input you can consider as you continue learning:
*I do think the string check you use is case sensitive (correct me if I'm wrong). If I would use your app, I would input "Add", "Subtract" etc as that's the choices you stated, which would unfortunately not let me add or subtract because you check for "add" and "subtract" (low capitals). An easy way to get around this is output a menu to user like: 1. Add 2. Subtract etc, that way you can just check for a number and don't have to deal with case sensitivity.
*You don't seem to have any check whether the user chooses a non existing operation, try to make one like that in your next project
*You could get rid of a lot of junk code by simply letting the user enter operation to perform, read the numbers and then, based on what operation the user choosed you can output the result whether it's an add, subtract or something else. You could also put the check if the user wants to continue below your if statements, this gets rid of having unneccessary code in every if statement since the user will reach the end of your program anyway.
Just consider this some things to think about, as I said nice work
