Home / Expert Answers / Computer Science / in-java-import-java-util-scanner-public-class-labprogram-nbsp-nbsp-define-your-method-pa679

(Solved): In Java: import java.util.Scanner; public class LabProgram {    /* Define your method ...



In Java:

8.32 LAB: Replacement words
Write a program that finds word differences between two sentences. The input begins with an integ

import java.util.Scanner;

public class LabProgram {

   /* Define your method here */

   public static void main(String[] args) {
      Scanner scnr = new Scanner(System.in);
      String[] sentence1Words = new String[20];
      String[] sentence2Words = new String[20];
      int wordCount;
      
      // Read the number of words per sentence
      wordCount = scnr.nextInt();
      
      // Call readSentences() to populate arrays
      readSentences(scnr, sentence1Words, sentence2Words, wordCount);
      
      // Display differing word pairs
      /* Type your code here. */
      
   }
}
 

8.32 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 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 econony Add a method named readSentences to read the input sentences into two String arrays. public static void readSentences(Scanner senr, string[] sentencelWords, String[] sentence2Words, int wordCount) main0 already contains code to read the word count and call readSentences0. Complete main0 to display differing word pairs.


We have an Answer from Expert

View Expert Answer

Expert Answer


Here is one way you could implement the program in Java: public static void readSentences(Scanner scnr, String[] sentence1Words, String[] sentence2Wor
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe