下面程序想通过函数计算三门课总分,横线处应填入的是什么?
int sumScore(int a, int b, int c) {
return a + b + c;
}
int main() {
int chinese = 88, math = 95, english = 90;
int total = __________;
cout << total;
return 0;
}
sumScore
sumScore(chinese, math, english)
sumScore(int chinese, int math, int english)
sumScore(a, b, c)