問題3-8
次のコードを実行した結果として正しいものを選択してください。(1つ選択)
$i = 1;
$add = 0;
while(++$i < 10){
  $add += $i;
}

print $add;