首页课程PHP趣味課堂continue語句

continue語句

目录列表

请在空格中补充代码,使语句输出偶数

<?php for($i = 1; $i <= 10; $i++){ if($i%2 = 1){ ; } echo $i."<br/>"; }

1/1