I have researched my issue all over StackOverflow and multi-google links, and I am still confused. I figured the best thing for me is ask...
Im creating a simple co
Strings cannot be used in switch statements in C++. You'll need to turn this into if/else if, like this:
if
else if
if (command == "tan") { // ... } else if (command == "cos") { // ... } // ...