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

Given string inputStr on one line, character charToFind on a second line, and integer strIndex on a third line, output "Matching" if the character at index strIndex of inputStr matches charToFind. Otherwise, output "Not matching". End with a newline.
Ex: If the input is:
guitar
i
2
then the output is:
Matching import java.util.Scanner;
public class CharMatch {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String inputStr;
char charToFind;
int strIndex;
inputStr = scnr.nextLine();
charToFind = scnr.next().charAt(0);
strIndex = scnr.nextInt();

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!