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 9, then output "Character 'g' is not found at or after index 9." Otherwise, output:
"Starting at index 9, the first occurrence of character 'g' is at index "
the index of the first occurrence of 'g' at or after index 9 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 9. import java.util.Scanner;
public class FindCharacter {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String dataString;
int index;
dataString = scnr.next();

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!