Question: 1 4 . 1 0 LAB: Replacement words Write a program that finds word differences between two sentences. The input begins with an integer indicating
LAB: Replacement words
Write a program that finds word differences between two sentences. The input begins with an integer indicating the number of words in
each sentence. The next input line is the first sentence and the following input line is the second sentence. Assume that the two sentences
have the same number of words and no more than words each.
The program displays word pairs that differ between the two sentences. One pair is displayed per line.
Ex: If the input is:
Smaller cars get better gas mileage
Tiny cars get great fuel economy
then the output is:
Add a method named readSentences to read the input sentences into two String arrays.
public static void readSentencesScanner scnr String sentenceWords, String sentenceWords, int
wordCount
main already contains code to read the word count and call readSentences Complete main to display differing word pairs.
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
