我正在为期末考试而学习,我遇到了这个问题:
编写一个php脚本从输入框中读取一个正整数n并计算1+2+--n的值...
我已经尝试了很长时间并进行了足够的研究,但到目前为止我还没有完成这项工作:
<html>
<head>
<title>
</title>
</head>
<body>
<form action="inputnum.php" method="post" >
num:<input type="text" name="num" size ="5"/>
<input type = "submit" value = "Submit Order" />
<?php
$num=$_POST["num"];
if ($num==0)$num=="";
for($i=0; $i<=$num; $i++){
}
echo"($num+$i)";
?>
</form>
谁能帮我吗?提前致谢!