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
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 mainString args
Scanner scnr new ScannerSystemin;
String userText;
char inputChar;
int strIndex;
userText scnrnextLine;
inputChar scnrnextcharAt;
strIndex scnrnextInt;
Your code goes here
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
