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