Jump to level 1 Given string userInput, output "Matching" if the fourth character of userInput is 'e'. Otherwise, output
Posted: Thu Jul 14, 2022 2:06 pm
Jump to level 1 Given string userInput, output "Matching" if the fourth character of userInput is 'e'. Otherwise, output "Not matching". End with a newline. Ex: If the input is: threw then the output is: Matching Note: Assume the length of string userinput is greater than or equal to 4. 1 #include 2 #include 3 using namespace std; 4 5 int main() \{ string userInput; 7 8 getline(cin, userInput); 101/ Your code goes here */ 11