作者ric2k1 (Ric)
看板EE_DSnP
标题[情报] Lecture Note #2 Errata
时间Wed Oct 1 18:26:03 2008
(请自行更正, 没有意外的话就不重新上传了)
p22.
Error : while (c <= 10) { ....; c++; }
Correct: while (c <= count) { ....; c++; }
p34.
Error : while (thisScore != -1) {
cout << “Please enter a score (-1 to exit):”;
cin >> thisScore;
totalScore += thisScore;
numStudents++;
}
Correct: while (thisScore != -1) {
totalScore += thisScore;
numStudents++;
cout << “Please enter a score (-1 to exit):”;
cin >> thisScore;
}
p35.
Error : if (thisScore != -1) break;
Correct: if (thisScore == -1) break;
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.112.21.241