Question: Write a program that Receives a paragraph from the user and stores it in String paragraph. Prompts the user to Enter the search phrase:, and
Write a program that
- Receives a paragraph from the user and stores it in String paragraph.
- Prompts the user to "Enter the search phrase:", and stores the input in a String text.
- Searches (case-sensitive) the paragraph for the text and prints the results, and prints the number of appearances and the index of every appearance as below (assuming that the text has appeared only three times):
Search phrase: "[text]" 1. [index of the first appearance] 2. [index of the second appearance] 3. [index of the third appearance]
- Keeps getting text and printing the result until the user enters "exit". When the user enters "exit", the program prints "End!", and stops.
import java.util.Scanner;
public class Main { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); /* Type your code here. */ } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
