用代码写一百以内乘法表要求在表格输入数字后出来三角形乘法表,帮忙把表格和php关联
<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>";
}
}
?>
</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>";
}
}
?>
</body>
</html> 展开
2个回答
推荐于2016-08-01
展开全部
<html>
<head>
<meta http-equiv="content-type"content="text/html;charset=utf-8"/>
</head>
<h1>九九乘法表</h1>
<body>
<?php
if(isset($_GET['figure'])){
function MultiplicationTable($n = 100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
MultiplicationTable($_GET['figure']);
}else{
?>
<form action='' method="get">
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
}
?>
</body>
</html>
没有加验证,可以自己加上
展开全部
<html>
<head>
<meta http-equiv="content-type"content="text/html;charset=utf-8"/>
</head>
<h1>九九乘法表</h1>
<body>
<form action="" method='get'>
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
$figure=isset($_GET['figure'])?$_GET['figure']:100;
function MultiplicationTable($n=100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
MultiplicationTable($figure);
?>
</body>
</html>
<head>
<meta http-equiv="content-type"content="text/html;charset=utf-8"/>
</head>
<h1>九九乘法表</h1>
<body>
<form action="" method='get'>
请输入数字: <input type="text" name="figure">
<input type="submit">
</form>
<?php
$figure=isset($_GET['figure'])?$_GET['figure']:100;
function MultiplicationTable($n=100)
{
for($i=1;$i<=$n;$i++)
{
for($j=1;$j<=$i;$j++)
{
echo $j."*".$i."=".($j*$i).' ';
}
echo "<br>";
}
}
MultiplicationTable($figure);
?>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询