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

  1. Receives a paragraph from the user and stores it in String paragraph.
  2. Prompts the user to "Enter the search phrase:", and stores the input in a String text.
  3. 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] 
  1. 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!