Board logo

標題: 練習: 陣列儲存 55 44 33 22 11 計算總和.平均(count).最大.最小值 [打印本頁]

作者: b790113g    時間: 2012-5-5 20:39     標題: 練習: 陣列儲存 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>"
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2