Question: String inputString is read from input. If inputString does not contain character ' n ' , then output Character ' n ' is not found.
String inputString is read from input. If inputString does not contain character then output "Character is not found."
Otherwise, output:
"First occurrence of character is at index"
the index of the first occurrence of in inputString
:
End with a newline.
Ex: If the input is dragged, then the output is:
Character is not found.
Ex: If the input is thickskinned, then the output is:
First occurrence of character is at index
import java.util.Scanner;
public class FindCharacter
public static void mainString args
Scanner new Scanner
System.in;
String inputstring;
int index;
inputString next ;
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
