PrintNumber ErrorLocation Error Correction DateAdded
1 pii First Printing October 2011 Second Printing: February 2012 2/6/2012
1 p61 Line 4 creates the weight variable and designates it as an integer variable with int. Line 4 creates the weight variable and designates it as a double variable with double. 2/7/2012
1 p85 Listing 7-2:
2: public static void main(String arguments) {
2: public static void main(String[] arguments) { 2/7/2012
1 p112 int temp = numbers[7]; int temp = numbers[5]; 2/7/2012
1 p114 Listing 9.4  Output of the Wheel Program
A: 22 B: 3 C: 5 D: 13 E: 28 F: 6 G: 5 H: 8 I: 18
J: 1 K: 0 L: 13 M: 10 N: 19 O: 27 P: 3 Q: 0 R: 13
S: 15 T: 19 U: 4 V: 7 W: 9 X: 0 Y: 10 Z: 0
Listing 9.4  Output of the Wheel Program
A: 22 B: 1 C: 4 D: 10 E: 33 F: 7 G: 6 H: 7 I: 18
J: 1 K: 2 L: 10 M: 8 N: 19 O: 20 P: 2 Q: 1 R: 12
S: 15 T: 20 U: 4 V: 7 W: 6 X: 0 Y: 7 Z: 0
2/7/2012