PROBLEM SOLVING WITH C++: THE OBJECT OF PROGRAMMING by Walter Savitch (c) 1996 Addison-Wesley Publishing Co. Inc. ISBN 0-8053-7440-X ERRATA last updated 9/11/95. The following errors appear in the first printing of the book. Note that, although this appears to be a lengthy list of errors, only five words need to be change; the instructions are just very explicit so as to avoid any misunderstanding. These errors are corrected in the second printing. If you have a second or later printing, you can ignore this errata. If you have obtained the program code from the book (by downloading from the Addison-Wesley ftp site), then the corrections have already been made in that code; you do not need to correct the code. Change the following five words in your book: page 488. Near the end of answer # 12: Replace cout with outs so that the line cout << a percent.value << '%'; is changed to outs << a percent.value << '%'; page 550. Third line from the bottom of the page: Replace cout with outs so that the line cout << the_object.list[i] << " F\n"; is changed to outs << the_object.list[i] << " F\n"; page 605 Sixth line. Replace cin with ins so that the line cin >> next;//Note: This skips over any initial whitespace. is changed to ins >> next;//Note: This skips over any initial whitespace. page 611 Sixth line of answer #14. Replace cin with ins so that the line cin.get(next); is changed to ins.get(next); page 730. Seventh line. Replace cout with outs so that the line cout << the list.item[i] << endl; is changed to outs << the list.item[i] << endl; September 11, 1995