Answered step by step
Verified Expert Solution
Question
1 Approved Answer
String inputString is read from input. If inputString does not contain character ' u ' , then output Character ' u ' is not found.
String inputString is read from input. If inputString does not contain character u then output "Character u is not found." Otherwise, output:
"First occurrence of character u is at index
the index of the first occurrence of u in inputString
End with a newline.
Ex: If the input is fizzle, then the output is:
Character u is not found.
Ex: If the input is accumulation, then the output is:
First occurrence of character u is at index import java.util.Scanner;
public class FindCharacter
public static void mainString args
Scanner scnr new ScannerSystemin;
String inputString;
int index;
inputString scnrnext;
Your code goes here
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