【PHP/演習問題】配列[1]

【PHP/演習問題】配列[1]

問題

次の実行結果になるプログラムを作成してください。
なお、以下条件を満たすものとします。

  • 配列型の変数$price_listを使用
  • $price_list100027005800を記憶
  • $price_listの値の合計値を$totalに記憶
  • $totalを出力
9500

解答例

<?php

$price_list = [];

$price_list[0] = 1000;
$price_list[1] = 2700;
$price_list[2] = 5800;

$total = 0;
$total += $price_list[0];
$total += $price_list[1];
$total += $price_list[2];

echo  $total."\n";

?>