Question
Write code to read in words from a given*word.txt* file, then prompt the user for two words and print out how many words in the
Write code to read in words from a given*word.txt* file, then prompt the user for two words and print out how many words in the file fall between those words. If one of the two words is not contained in the file, then say word1 or word 2 is not found in the file.
Sample output:
Please type in the two words: good and night
good or night is not found.
Sample output:
Please type in the two words: hello and computer
There are 1234 words between hello and computer
Hint: you can use binarySearch method in slides of searching and sorting to figure out the index for the two words.
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