一道华为上机题

/********************************************************************************************
9月7日,一道华为上机题:
题目描述: 选秀节目打分,分为专家评委和大众评委,score[] 数组里面存
储每个评委打的分数,judge_type[] 里存储与score[] 数组对应的评委类
别,judge_type == 1,表示专家评委,judge_type == 2,表示大众评委,
n表示评委总数。打分规则如下:专家评委和大众评委的分数先分别取
一个平均分(平均分取整),然后,总分 = 专家评委平均分 * 0.6 + 
大众评委 * 0.4,总分取整。如果没有大众评委,则 总分 = 专家评委平均分,
总分取整。函数最终返回选手得分。
函数接口 int cal_score(int score[], int judge_type[], int n)  

上机题目需要将函数验证,但是题目中默认专家评委的个数不能为零,
但是如何将这种专家数目为0的情形排除出去。
*******************************************************************************************/

#include <iostream>
#include <assert.h>
using namespace std;

int cal_score(int score[], int judge_type[], int n)  
{
	assert(n>0);
	int specialistScore = 0;
	int specialistNum = 0;
	int popularScore = 0;
	int popularNum = 0;
	for (int i=0; i<n; ++i) {
		if (judge_type[i]==1) {
			++specialistNum;
			specialistScore += score[i];
		} else if (judge_type[i]==2) {
			++popularNum;
			popularScore += score[i];
		}
	}
	if (specialistNum && popularNum) {
		return int(int(double(specialistScore)/specialistNum+0.5)*0.6+int(double(popularScore)/popularNum+0.5)*0.4+0.5);
	} else if (specialistNum && !popularNum)
		return int(double(specialistScore)/specialistNum+0.5);
	else
		return 0;//无专家的情况
}


int main(int argc, char **argv)
{
	int score[10]={1,2,3,5,6,7,8,9,4,7};
	int judge_type[10]={1,1,1,1,1,1,1,1,1,1};
	int n=10;
	int avar=cal_score(score,judge_type,10);
	cout<<avar<<endl;


	system("pause");
	return 0;
}
水一题~
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值