PHP计算显示平均温度五个最低及最高温度

Posted nzc520

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP计算显示平均温度五个最低及最高温度相关的知识,希望对你有一定的参考价值。

技术分享图片

<?php

 

$month_temp = "78, 60, 62, 68, 71, 68, 73, 85, 66, 64, 76, 63, 81, 76, 73,

 

68, 72, 73, 75, 65, 74, 63, 67, 65, 64, 68, 73, 75, 79, 73";

 

$temp_array = explode(‘,‘, $month_temp);

 

$tot_temp = 0;

 

$temp_array_length = count($temp_array);

 

foreach($temp_array as $temp)

 

{

 

    $tot_temp += $temp;

 

}

 

$avg_high_temp = $tot_temp/$temp_array_length;

 

echo "平均温度为: ".$avg_high_temp."

 

";

 

sort($temp_array);

 

echo " 五个最低温度:";

 

for ($i=0; $i< 5; $i++)

 

{

 

    echo $temp_array[$i].", ";

 

}

 

echo "五个最高温度:";

 

for ($i=($temp_array_length-5); $i< ($temp_array_length); $i++)

 

{

 

    echo $temp_array[$i].", ";

 

}

结果:

技术分享图片

 

<?php

$month_temp = "78, 60, 62, 68, 71, 68, 73, 85, 66, 64, 76, 63, 81, 76, 73,

68, 72, 73, 75, 65, 74, 63, 67, 65, 64, 68, 73, 75, 79, 73";

$temp_array = explode(‘,‘, $month_temp);

$tot_temp = 0;

$temp_array_length = count($temp_array);

foreach($temp_array as $temp)

{

    $tot_temp += $temp;

}

$avg_high_temp = $tot_temp/$temp_array_length;

echo "平均温度为: ".$avg_high_temp."

";

sort($temp_array);

echo " 五个最低温度:";

for ($i=0; $i< 5; $i++)

{

    echo $temp_array[$i].", ";

}

echo "五个最高温度:";

for ($i=($temp_array_length-5); $i< ($temp_array_length); $i++)

{

    echo $temp_array[$i].", ";

}

以上是关于PHP计算显示平均温度五个最低及最高温度的主要内容,如果未能解决你的问题,请参考以下文章

用C语言编写程序,由键盘输入城市及所有温度值,并输出温度最高和温度最低的城市和日期?

为啥最高温度没有上限?

fluent平均温度怎么读

为啥温度有最低值没有最高值?

不用最高温度和最低温度

选择过去 24 小时和过去 ​​30 天的最低和最高温度 [关闭]