php老师 发表于 2014-10-28 10:22:10

php 过桥计算练习

练习代码:


for($i=100000,$cnt=0; $i>=5000;){
        $cnt+=1;
        //扣钱
        if($i>5000){
                $i*=0.95;
        }else{
                $i-=5000;
        }
        echo '第',$cnt,'次过桥,剩下',$i,'元<br/>';
}

页: [1]
查看完整版本: php 过桥计算练习