Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started