php學習之簡單計算機實現代碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<html>
<head>
<title>PHP實現簡單計算機</title>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312">
</head>
<?php
//單路分支
if(isset($_GET["sub"]))
{
$num1=true;//數字1是否為空白標記
$num2=true;//數字2是否為空白標記
$numa=true;//數字1是否為數字
$numb=true;//數字2是否位元字
$message="";
//判斷數字1是否為空白
if($_GET["num1"]=="")
{
$num1=false;
$message.="第一個數不可為空";
}
//判斷數字1是否為數字
if(!is_numeric($_GET["num1"]))
{
$numa=false;
$message.="第一個數不是數字";
}
//判斷數字2是否為數字
if(!is_numeric($_GET["num2"]))
{
$numa=false;
$message.="第二個數不是數字";
}
//判斷數字2是否為空白
if($_GET["num2"]=="")
{
$num2=false;
$message.="第二個數不可為空";
}
if($num1 && $num2 && $numa && $numb)
{
$sum=0;
//多路分支
switch($_GET["ysf"]){
case "+":
$sum=$_GET["num1"]+$_GET["num2"];
break;
case "-":
$sum=$_GET["num1"]-$_GET["num2"];
break;
case "x":
$sum=$_GET["num1"]*$_GET["num2"];
break;
case "/":
$sum=$_GET["num1"]/$_GET["num2"];
break;
case "%":
$sum=$_GET["num1"]%$_GET["num2"];
break;
}
}
}
?>
<body>
<table align="center" border="1" width="500">
<caption><h1>計算機</h1></caption>
<form action="jisuanqi.php" >
<tr>
<td>
<input type="text" size="5" name="num1" value="<?php echo $_GET["num1"]; ?>">
</td>
<td>
<select name="ysf">
<option value="+" <?php if($_GET["ysf"]=="+") echo "selected"; ?>>+</option>
<option value="-" <?php if($_GET["ysf"]=="-") echo "selected"; ?>>-</option>
<option value="x" <?php if($_GET["ysf"]=="x") echo "selected"; ?>>x</option>
<option value="/" <?php echo $_GET["ysf"]=="/"?"selected":""; ?>>/</option>
<option value="%" <?php if($_GET["ysf"]=="%") echo "selected"; ?>>%</option>
</select>
</td>
<td>
<input type="text" size="5" name="num2" value="<?php echo $_GET["num2"]; ?>">
</td>
<td>
<input type="submit" value="計算" name="sub">
</td>
</tr>
<?php
if(isset($_GET["sub"]))
{
echo '<tr><td colspan="4">';
if($num1 && $num2 && $numa && $numb)
{
echo "結果是:".$_GET["num1"]." ".$_GET["ysf"]." ".$_GET["num2"]." = ".$sum;
}
else
{
echo $message;
}
echo '</td></tr>';
}
?>
</form>
</table>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.