我有一个包含学生姓名和分数的多维数组:
$student = array('Alice' => array(84, 93, 88, 100, 92, 84) ,
'bob' => array(92, 47, 68, 79, 89) ,
'charlie' => array(73, 85, 84, 69, 67, 92) ,
'denis' => array(59, 92, 83, 79, 73) ,
'eve' => array(91, 68, 85, 79, 84));
现在,我想找出每个学生的最高"五"分的平均值:
foreach ($students as $student => $key){
echo $student . '<br>';
arsort($key);
$value = array_slice($key, 0,5);
foreach ($value as $output){
$total += $output . '<br />';
$average = $total / count($value);
}
echo $average . '<br/>';
}
我的问题是,它没有给出所有学生的平均值,而是只给出了第一个学生Alice的平均值。我该怎么做才能得到所有学生的平均分?
有几个问题,但只需将内部foreach()
替换为:
$average = array_sum($value) / count($value);
:
foreach ($students as $student => $key){
echo $student . '<br>';
arsort($key);
$value = array_slice($key, 0,5);
$average = array_sum($value) / count($value);
echo $average . '<br/>';
}
如果我正确理解了问题,可以使用下面的代码将每个学生的前5分添加到一个数组中,然后对该数组取平均值。
$scores = array();
foreach ($students as $student => $key){
// Sort this student's scores
arsort($key);
// Add the top 5 scores to the scores array
$scores = array_merge($scores, array_slice($key, 0,5));
}
// Average of all the top 5 scores
$average = array_sum($scores) / count($scores);
您目前采用的方法有三个主要问题。
- 每次循环都覆盖
$average
的值 - 您正在计算每个分数的平均
N
次数 - 你错误地将平均值表述为
SUM([score1...score5]) / N
以下是每个学生前5名的平均成绩的正确执行:
$students = [
'Alice' => [84, 93, 88, 100, 92, 84],
'bob' => [92, 47, 68, 79, 89],
'charlie' => [73, 85, 84, 69, 67, 92],
'denis' => [59, 92, 83, 79, 73],
'eve' => [91, 68, 85, 79, 84],
];
$averages = array_map(function($scores) {
arsort($scores);
return array_sum(array_slice($scores, 0, 5)) / 5;
}, $students);
var_dump($averages);
/* this gives us something like ...
array(5) {
["Alice"]=>
float(91.4)
["bob"]=>
int(75)
["charlie"]=>
float(80.6)
["denis"]=>
float(77.2)
["eve"]=>
float(81.4)
}
*/
注意,说$average = array_sum(array_slice($scores, 0, 5)) / count($scores)
实际上是不正确的,因为你只是平均5
的最高分数,你不需要除以count($scores)
,而是除以5
。