文、意如
<?php
//資料為溫度,找出資料中最高溫的及最低溫度的
$degree = array(26, 31, 22, 8, 32, 12, 30);//溫度資料
$max = 0; //預設最高溫
$min = 100;//預設最低溫
$len = count($degree); //數這筆陣列共有幾筆資料
for ($i = 0; $i < $len; $i++) {
if ($degree[$i] > $max) { //當溫度大於預設最高溫
$max = $degree[$i]; //把資料存入最高溫
}
if ($degree[$i] < $min) {//當溫度小於預設最低溫
$min = $degree[$i];//把資料存入最低溫
}
}
echo "最高溫為$max<BR>";
echo "最低溫為$min<BR>";
?>
Yiru@Studio - 關於我 - 意如