Question: CHALLENGE ACTIVITY 3 . 1 6 . 1 : More string operations. 5 2 8 0 4 0 . 3 4 8 9 5 2
CHALLENGE
ACTIVITY
: More string operations.
Jump to level
String inputString is read from input. If inputString does not contain character at or after index then output "Character is not found at or after index Otherwise, output:
"Starting at index the first occurrence of character is at index"
the index of the first occurrence of at or after index in inputString
End with a newline.
Ex: If the input is surrendered, then the output is:
Character is not found at or after index
Ex: If the input is constructing, then the output is:
Starting at index the first occurrence of character is at index
import java.util.Scanner;
public class FindCharacter
public static void mainString args
Scanner scnr new Scanner
System.in;
String inputstring;
int index;
inputstring scnr next;
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
