(Use the string class to solve the problem)
Write a program (in c++) that can be used to train the user to
use less sexist language by suggesting alternative versions of
sentences given by the user. The program will ask for a sentence,
read the sentence into a string variable, and replace all
occurrences of masculine pronouns with gender-neutral pronouns. For
example, it will replace “he” with “she or he”, and “him” with “her
or him”.
Be sure to preserve...