Tutorial 9
Tutorial 9
Tutorial 9
Exercise 1 (required)
File CountLetters.java contains a program that reads a word from the user and prints the
number of occurrences of each letter in the word. Save it to your package and study it, then
compile and run it to see how it works. While reading the code, note that the word is converted
to all upper case first, then each letter is translated to a number in the range 0..25 (by
subtracting 'A') for use as an index. No test is done to ensure that the characters are in fact
letters.
Step 1. Run CountLetters and enter a phrase, that is, more than one word with spaces or other
punctuation in between. It should throw an ArrayIndexOutOfBoundsException, because a
non-letter character will generate an index that is not between 0 and 25. It might be desirable
to allow non-letter characters, but not count them. Of course, you could explicitly test the value
of the character to see if it is between 'A' and 'Z'. However, an alternative is to go ahead and
use the translated character as an index, and catch an ArrayIndexOutOfBoundsException if
it occurs. Since you don’t want to do anything when a non-letter occurs, the handler will be
empty. Modify this method to do this as follows:
Step 2. Now modify the body of the catch block so that it prints a useful message (e.g., “Not
a letter”) followed by the exception. Compile and run the program. Although it’s useful to
print the exception for debugging, when you’re trying to smoothly handle a condition that you
don’t consider erroneous, you often don’t want to. In your print statement, replace the
exception with the character that created the out-of-bounds index. Run the program again;
much nicer!
Exercise 2 (required)
10 20 30 40
it should print
Try some other inputs as well. Now try a line that contains both integers and other values,
e.g.,
File Factorials.java contains a program utilizing the factorial method from the
MathUtils class to compute factorials of user-input integers. Save the files to your package,
study the code, compile, and run Factorials to observe its functionality. Test with various
positive integers, then try a negative number. You'll find it works for small positive integers
(smaller than 17), but returns a large negative value for larger integers and 1 for negative
integers.