返回列表 發帖

練習: 陣列儲存 55 44 33 22 11 計算總和.平均(count).最大.最小值

  1.         $score = array(55,44,33,22,11);
  2.         $total = 0;
  3.         $max = 0 ;
  4.         $min = 999 ;
  5.        
  6.         for($i=0;$i<count($score);$i++){
  7.                 $total = $total + $score[$i] ;
  8.                 if($score[$i]>$max){
  9.                         $max = $score[$i] ;
  10.                 }
  11.                 if($score[$i]<$min){
  12.                         $min = $score[$i];       
  13.                 }
  14.         }
  15.         echo $total."<br>";
  16.         echo $total/count($score)."<br>" ;
  17.         echo $max."<br>";
  18.         echo $min."<br>"
複製代碼

返回列表