Question: finish the code: String dataString is read from input. If dataString does not contain character ' g ' at or after index 9 , then
finish the code: String dataString is read from input. If dataString does not contain character g at or after index then output "Character g is not found at or after index Otherwise, output:
"Starting at index the first occurrence of character g is at index
the index of the first occurrence of g at or after index in dataString
End with a newline.
Ex: If the input is regarded, then the output is:
Character g is not found at or after index import java.util.Scanner;
public class FindCharacter
public static void mainString args
Scanner scnr new ScannerSystemin;
String dataString;
int index;
dataString scnrnext;
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
