一.使用循环语句进行输出 1.计算1~100的和 1.1 使用for语句 <?phpfor($x=1;$x 1.2 使用while语句 <?php$a = 1 ;$b = 0 ;while($a1.3 使用do...whil...