php实现简单的计算器

<html>
<head>
    <title>PHP实现简单的计算器</title>
    <meata http-equiv="Content-Type" content="text/html;charset=utf-8"></meata>
</head>
<?php
    $num1=true;
    $num2=true;
    $numa=true;
    $numb=true;
    $message="";
    //单路分支
    if(isset($_GET["sub"])){
        if($_GET["num1"]==""){
            $num1=false;
            $message.="第一个数字不能为空";
        }
        if(!is_numeric($_GET["num1"])){
            $numa=false;
            $message.="第一个不是数字";
        }
        if($_GET["num2"]==""){
            $num2=false;
            $message.="第二个不能为空";
        }
        if(!is_numeric($_GET["num2"])){
            $numb=false;
            $message.="第二个不是数字";
        }
        if($num1 && $num2 && $numa && $numb){
            $sum=0;
            //多路分支swith
            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" sidth="500">
    <caption><h1>计算器</h1></caption>
    <form action="test.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 echo $_GET["ysf"]=="x"?"selected":"" ?>>x</option>
                    <option value="/" <?php echo $_GET["ysf"]=="/"?"selected":"" ?>>/</option>
                    <option value="%" <?php echo $_GET["ysf"]=="%"?"selected":"" ?>>%</option>
                </select>
            </td>
            <td>
                <input type="text" size="5" name="num2" value="<?php echo $_GET["num2"] ?>">
            </td>
            <td>
                <input type="submit" name="sub" value="计算">
            </td>
        </tr>

        <?php
            if(isset($_GET["sub"])){
                echo '<tr><TD colspan="5">';
                if($num1 && $num2 && $numa && $numb){
                    echo "结果:".$_GET["num1"]." ".$_GET["ysf"]." ".$_GET["num2"]." = ".$sum;
                }else{
                    echo $message;
                }
                echo '</td></tr>';
            }
        ?>
    </form>
</table>
</body>
</html>


/**
 * Created by PhpStorm.
 * User: user
 * Date: 2018/3/27
 * Time: 16:26
 *
 */

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值