Question: Given string userText on one line, character inputChar on a second line, and integer strIndex on a third line, output Matching if the character at

Given string userText on one line, character inputChar on a second line, and integer strIndex on a third line, output "Matching" if the character at index strIndex of userText matches inputChar. Otherwise, output "Not matching". End with a newline.
Ex: If the input is:
weigh
h
4
then the output is:
Matching
Note: Assume the length of string userText is greater than strIndex.import java.util.Scanner;
public class MatchChar {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String userText;
char inputChar;
int strIndex;
userText = scnr.nextLine();
inputChar = scnr.next().charAt(0);
strIndex = scnr.nextInt();
/* Your code goes here */
}
}

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!