Write an application
that accepts up to 20 Strings, or fewer if the user enters the
terminating value ZZZ. Store each String in one of
two lists—one list for short Strings that are 10 characters or
fewer and another list for long Strings that are 11 characters or
more. After data entry is complete, prompt the user to enter which
type of String to display, and then output the correct list.
For this exercise,
you can assume that if the...