Question: CHALLENGE ACTIVITY 4 . 3 . 1 : String access operations. 5 4 1 3 5 8 . 3 6 3 9 3 5 6
CHALLENGE
ACTIVITY
: String access operations.
Given string userString on one line and integers idx and idx on a second line, output "Matching" if the character at index idx of userString is equal to the character at index idx Otherwise, output "Not matching". End with a newline.
Ex: If the input is:
eerie
then the output is:
Matching
Note: Assume the length of string userString is greater than or equal to both idx and idx
import java.util.Scanner;
public class CharMatch
public static void mainString args
Scanner scnr new Scanner
System.in;
String userString;
int idx;
int idx;
userString scnrnextLine;
idx scnr nextInt;
nex;
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
