作者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