Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java - I have not learned the code hasNext() Write a program that asks the user to enter 10 Strings. Sort the input into two
Java - I have not learned the code hasNext()
Write a program that asks the user to enter 10 Strings. Sort the input into two ArrayLists: one that contains words that longer than 6 letters and one that contains words that start with the letter b. It is possible that a word may be added to both ArrayLists. Output the contents of the ArrayLists.
Sample Run:
Enter 10 words:
apple
banana
red
blue
soccer
basketball
cloudy
rain
pants
shirt
Words 6 letters long or more: [banana, soccer, basketball, cloudy]
Words that start with b: [banana, blue, basketball]
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