时间:2021-07-01 10:21:17 帮助过:18人阅读
// ========break and c/span>for($i =1; $i < 10 ; $i++){
if($i == 4 ){
continue; //跳过下一步,继续循环
}
echo$i;
echo"
";
}
for($i =1; $i < 10 ; $i++){
if($i == 7){
echo$i, "真驸马";
break; //已经找到需要的,跳出循环
}
echo$i;
echo"
";
}
?>
实际训练
过桥问题
header("Content-Type: text/html; charset=utf-8");
$a = 0;
for ($i=100000, $cnt = 0; $i >= 5000 ;) {
$cnt += 1;
//扣钱if($i > 50000){
$i *= 0.95;
} else {
$i -= 5000;
}
echo'第' , $cnt , '次过桥,剩下', $i , '元
';
}
?>
买鸡问题
for ($x=1; $x< 20; $x++) {
for ($y=1; $y < 100 ; $y++) {
$z = 100 - $x - $y;
if (($x+$y+$z)==100 && ( (5*$x + 3 * $y + (1/ 3) * $z) == 100) ){
echo'公鸡:' ,$x, '
';
echo'母鸡:', $y, '
';
echo'小鸡:' ,$z, '
';
}
}
}
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了PHP学习笔记(03)—— 控制结构,包括了循环方面的内容,希望对PHP教程有兴趣的朋友有所帮助。