我正在尝试使用二维数组来获得帕斯卡的三角形。但它不起作用。任何人都可以解决这个程序。提前致谢。
<html>
<body>
<div>
<form name="form1" action="pascaltriangle4.php" method="post">
Enter the number of rows in pyramid of stars you wish to see : <input type="text" name="n">
<input type="submit" name="submit" value="submit">
</form>
</div>
<div>
<table>
<?php
if($_POST['submit']==='submit')
{
ini_set('display_errors', 1);
error_reporting(E_ALL);
$n=$_POST['n'];
$arr=array();
//print_r($arr);
for($i=0;$i<=$n;$i++)
{
echo "<tr>";
for($j=0;$j<=$i;$j++)
{
if($j==0)
{
//echo "1";
$arr[$i][$j]=1;
//print_r($arr);
if($n!=$i)
{
echo "<td colspan='".($n-$i)."'></td>";
}
echo "<td>".$arr[$i][$j]."</td>";
echo "<td></td>";
}
elseif($i==$j)
{
//echo "1";
$arr[$i][$j]=1;
//echo $arr;
echo "<td>".$arr[$i][$j]."</td>";
//echo "<td></td>";
}
else
{
$arr[$i][$j]=$arr[$i-1][$j-1]+$arr[$i-1][$j];
echo "<td>".$arr[$i][$j]."</td>";
echo "<td></td>";
}
}echo "</tr>";
}
//echo "<pre>";
//print_r($arr);
//echo "</pre>";
}
?>
</table></div>
<body>
</body>
</html>