我是菜鸟勿拍砖~~
题目1、选秀节目打分,分为专家评委和大众评委,score[] 数组里面存储每个评委打的分数,judge_type[] 里存储与 score[] 数组对应的评委类别,judge_type[i] == 1,表示专家评委,judge_type[i] == 2,表示大众评委,n表示评委总数。打分规则如下:专家评委和大众评委的分数先分别取一个平均分(平均分取整),然后,总分 = 专家评委平均分 * 0.6 + 大众评委 * 0.4,总分取整。如果没有大众评委,则 总分 = 专家评委平均分,总分取整。函数最终返回选手得分。
函数接口 int cal_score(int score[], int judge_type[], int n)
答案
// 专家大众评委打分.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include<windows.h>
using namespace std;
int cal_score(int score[], int judge_type[], int n);
int _tmain(int argc, _TCHAR* argv[])
{ int fenshu;
int score[]={100,89,90,11,10};
int judge_type[]={1,2,1,2,1};
int n=5;
fenshu=cal_score(score,judge_type,n);
cout <<fenshu<<endl;
system("pause");
}
int cal_score(int score[], int judge_type[], int n)
{int i,zuizhongave;
double yuanshiave;
double zhuanjiaave,dazhongave;
int zhuanjiasum=0;
int zhuanjiashu=0;
int dazhongsum=0;
int dazhongshu=0;
for (i=0;i<n;i++)
{
if (judge_type[i]=1)
{
zhuanjiasum+=score[i];
zhuanjiashu++;
}
if (judge_type[i]=2)
{
dazhongsum+=score[i];
dazhongshu++;
}
}
zhuanjiaave=zhuanjiasum/zhuanjiashu;
dazhongave=dazhongsum/dazhongshu;
if (dazhongshu==0)
yuanshiave=zhuanjiaave;
else
yuanshiave=zhuanjiaave*0.6+dazhongave*0.4;
zuizhongave=yuanshiave;
return zuizhongave;
}