I'm new to C++ and is trying to solve the beginner's problem of trying to remove all punctuation marks from a sentence. Below is the code I have came up with. However, when I entered "Hello! Hello!", the compiler output "Hello" instead of "Hello Hello" (which is what I would expect).I'm new to C++ and is trying to solve the begin