Errata for Starting Out With Java CSO

1

Click here to load reader

Transcript of Errata for Starting Out With Java CSO

Page 1: Errata for Starting Out With Java CSO

Errata for Starting Out with Java 5: From Control Structures to Objects Updated November 3, 2005 Page 111: In question 5, the numbers in a, b, and c are intended to be shown in scientific notation, but the exponents are not printed as superscripts. The numbers should appear as:

a. 3.287 x 106 b. -9.7865 x 1012 c. 7.65491 x 10-3

Page 247: In question 9 the > operator in the loop's test expression should be a < operator. The loop header should appear as: while (count < 50)