Write a program that analyzes text written in the console by counting the number of times each of the 26 letters in the alphabet occurs. uppercase and lowercase letters should be counted together (for example, both ‘a' and ‘a' should count as an a). any characters that are not letters should be ignored. you must prompt the user to enter the text to be analyzed. then, for any letter that appeared at least once in the text, print out the number of times it appeared (and do so in alphabetical order). an effective way to count characters is to read from the console string-by-string, and loop through all of the characters of each of these strings. similar to problem a, the hasnext() method of the scanner will be useful, and when testing in eclipse, press enter and then, once on the empty line, press ctrl-d when you are done typing the text.