c++, Thank you 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 20 words each. The program displays word pairs that differ between the two sentences. One pair is displayed per line.
In c++, Thank you
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 20 words each.
The program displays word pairs that differ between the two sentences. One pair is displayed per line.
Ex: If the input is:
6 Smaller cars get better gas mileage Tiny cars get great fuel economy
then the output is:
Smaller Tiny better great gas fuel mileage economy
Add a function named ReadSentences to read the input sentences into two string
void ReadSentences(vector<string>& sentence1Words, vector<string>& sentence2Words, int wordCount)
main() already contains code to read the word count and call ReadSentences(). Complete main() to display differing word pairs.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images