用代码写一百以内乘法表要求在表格输入数字后出来三角形乘法表,帮忙把表格和php关联 40
<html><head><metahttp-equiv="content-type"content="text/html;charset=gbk"/></head><h1...
<html>
<head>
<meta http-equiv="content-type"content="text/html;charset=gbk"/>
</head>
<h1>九九乘法表</h1>
<body>
<form>
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
function MultiplicationTable($n=100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
MultiplicationTable($n=9);
?>
</body>
</html> 展开
<head>
<meta http-equiv="content-type"content="text/html;charset=gbk"/>
</head>
<h1>九九乘法表</h1>
<body>
<form>
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
function MultiplicationTable($n=100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
MultiplicationTable($n=9);
?>
</body>
</html> 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏40(财富值+成长值)
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询