PHP技術者認定[初級]試験(PJ0-100)
問題3-8
次のコードを実行した結果として正しいものを選択してください。(1つ選択)
$i = 1; $add = 0; while(++$i < 10){ $add += $i; } print $add;
9
10
44
45
55