Question: Given string userText on one line and integers idx 1 and idx 2 on a second line, output Match found if the character at index

Given string userText on one line and integers idx1 and idx2 on a second line, output "Match found" if the character at index idx1 of userText is equal to the character at index idx2. Otherwise, output "Match not found". End with a newline.
Ex: If the input is:
babble
02
then the output is:
Match found
Note: Assume the length of string userText is greater than or equal to both idx1 and idx2.
import java.util.Scanner;
public class CharMatching {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String userText;
int idx1;
int idx2;
userText = scnr.nextLine();
idx1= scnr.nextInt();
idx2= scnr.nextInt();
java

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!