Answered step by step
Verified Expert Solution
Link Copied!

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 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions