Use C++
(1) Prompt the user for a string that contains two strings separated by a comma.
Ex:
Enter input string:
Jill, Allen
(2) Print an error message if the input string does not contain a comma. Continue to prompt until a valid string is entered.Note: If the input contains a comma, then assume that the input also contains two strings.Ex:
Jill Allen
Error: No comma in string.
(3) Extract the two words from the input string and remove any spaces. Store the strings in two separate variables and output the strings.Ex:
First word: Jill
Second word: Allen
(4) Using a loop, extend the program to handle multiple lines of input. Continue until the user enters q to quit.Ex:
Second word:
Allen Enter input string:
Golden , Monkey
First word: Golden
Second word: Monkey
Washington,DC
First word: Washington
Second word: DC
q
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here