JAVA Program
java program that reads a five letter word from the user and produces all three letter words that can be derived from the letters of the five letter word for example , The three letter words produced from the word "bathe" include the commonly used words "ate" ,"bat" , "bet" , "tab", "hat", "the", and "tea"

VulpesPosted Mar 3, 2014, 9:35 AM
I found a list of 3 letter words that we could use here:
http://answers.yahoo.com/question/index?qid=20091108150949AAHhR5n
Abhishek JaiswalPosted Mar 3, 2014, 7:46 AM
VulpesPosted Feb 28, 2014, 8:21 AM
Basically, you'd need to check the strings against a dictionary of valid words.
Do you think this is what the question is asking you to do?
If so, which online dictionary should be used?