PHP計算顯示平均溫度,五個最低及最高溫度。記錄溫度為78,60,62,68,71,68,73,85,66,64,76,63,75,76,73,68,62,73,72,65,74,62,62,65 ,64,68,73,75,79,73。
下面我們就透過具體的程式碼範例,跟大家介紹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].", "; }
輸出:
平均温度为:70.6 五个最低温度:60,62,63,63,64, 五个最高温度:76,78,79,81,85,
#相關函數:
explode() 函數表示使用字串分割另一個字串
count()函數表示計算陣列中的單元數目,或物件中的屬性個數
#sort()函數表示對陣列進行排序。當本函數結束時數組單元將被從最低到最高重新安排。
註:
$tot_temp = $temp 相當於$tot_temp=$tot_temp $temp
這篇文章是關於PHP計算顯示平均溫度、五個最低及最高溫度的方法介紹,也是PHP面試常見考點之一,非常簡單易懂,希望對需要的朋友有幫助!
以上是PHP計算顯示平均溫度、五個最低及最高溫度的詳細內容。更多資訊請關注PHP中文網其他相關文章!