测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A18395. 下面程序想通过函数计算三门课总分,横线处应填入的是( )。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; }

单选题 较难

题目描述

下面程序想通过函数计算三门课总分,横线处应填入的是(    )。

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;
}

选项(单选)

上一题 下一题