Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please use input.txt and output.txt and show your output and the input file Homework - Topic 8 - Word Count: Write a program that reads
please use input.txt and output.txt
and show your output and the input file
Homework - Topic 8 - Word Count: Write a program that reads in and prints a text, line by line, and calls a series of methods as needed. The object of the program is to parse a sentence in order to figure out all the different words that are in the sentence and how many times each word occurs. Use two parallel arrays, one to store the different words (e.g., String[] word) and one to store the appearance count for each word (e.g., int[] wordCount). At the end, print the list of different words and their counts. (Extra Credit: print the list of words and their counts in alphabetical order.) You have to decide which methods to implement. For example, suppose the text is this: The elephant ate the banana and the giraffe ate the banana. The output would produces this list: andatebananaelephantgiraffethe122114 Hint: Think Bank Accounts! (Use what you learned in the Bank Accounts program.) Required Submission: 1. The Java source code file (e.g., HW8.java) 2. The data input file containing the sentence to be parsed (e.g., input.txt) 3. The program generated output file (e.g., output.txt)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started