double totalScore = 0; // 总分 int studCount = 0; // 总人数 while (__________) { // 此处填写代码 cin >> score; if (score < 0) break; totalScore += score; studCount += 1; } cout << "平均分=" << totalScore / studCount;
true
false
Ture
False