php-杨辉三角

<!DOCTYPE html>

<html xmlns=”http://www.w3.org/1999/xhtml”>

<head>

    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />

    <title>杨辉三角</title>

</head>

<body>

    <?php

    $mixnum = 1;

    $maxnum = 10;

    $tmparr[][] = array();

    $tmparr[0][0] = 1;

    for($i = 1; $i < $maxnum; $i++):

        for($j = 0; $j <= $i; $j++):

            if($j == 0 or $j == $i):

                $tmparr[$i][$j] = 1;

            else:

                $tmparr[$i][$j] = $tmparr[$i – 1][$j – 1] + $tmparr[$i – 1][$j];

            endif;

        endfor;

    endfor;    

    foreach($tmparr as $value):

        foreach($value as $vl) 

            echo $vl.’ ‘;

        echo ‘<p>’;

    endforeach;

    ?>

</body>

</html>

    原文作者:杨辉三角问题
    原文地址: https://blog.csdn.net/h4329201/article/details/73469379
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞