码迷,mamicode.com
首页 > Web开发 > 详细

php习题

时间:2019-01-05 15:11:25      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:color   php   bsp   nbsp   ++   for   div   ==   style   

百钱百鸡:

<?php
    $num=0;
    for($gj=1;$gj<=49;$gj++){
        for($mj=1;$mj<=97;$mj++){
            for($xj=1;$xj<=97;$xj++){
                if($gj*2+$mj*1+$xj*0.5==100&&$gj+$mj+$xj==100){
                    $num++;
                    echo "公鸡:".$gj."母鸡:".$mj."小鸡:".$xj;
                    echo "<br />";
                }
            }
        }
    }
    echo $num."种";

九九乘法表:

for($a=0;$a<=9;$a++){
        for($b=0;$b<=9;$b++){
            echo $a."*".$b."=".$a*$b."&nbsp;";
        }
        echo "<br />";
    }

 

php习题

标签:color   php   bsp   nbsp   ++   for   div   ==   style   

原文地址:https://www.cnblogs.com/liangdong/p/10224340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!