Question: Jump to level 1 Given string userString on one line and integers idx 1 and idx 2 on a second line, output Match found if

Jump to level 1
Given string userString on one line and integers idx 1 and idx2 on a second line, output "Match found" if the character at index idx 1 of userString is equal to the character at index idx2. Otherwise, output "Match not found". End with a newline.
Ex: If the input is:
beeline
21
then the output is:
Match found
Note: Assume the length of string userString is greater than or equal to both idx1 and id2.
getline(cin, userString);
cin idx1;
cin idx2;
if (
userString.at(idx1)=
userString.at(idx2)){
cout "Match found" endl;
}
else {
cout "Match not found" endl;
}
return
}
 Jump to level 1 Given string userString on one line and

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!