美文网首页
2018-11-30练习一

2018-11-30练习一

作者: 回忆在美也是曾经 | 来源:发表于2018-11-30 11:40 被阅读0次
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>if练习1</title>
        <script type="text/javascript">
        /*
         *  从键盘输入小明的期末成绩:
         *  当成绩为100时,'奖励一辆BMW'
         *  当成绩为[80-99]时,'奖励一台iphone15s'
         *  当成绩为[60-80]时,'奖励一本参考书'
         *  其他时,什么奖励也没有
         */
        var score = prompt("请输入小明的期末成绩(0-100)");
        if(score == 100){
            alert("奖励一台BMW!");
        }else if(score <= 99 & score >=80){
            alert("奖励一台iphone15s!");
        }else if(score <=80 & score>=60){
            alert("奖励一本参考书!");
        }else{
            alert("无");
        }
    </script>
</head>
<body>
    
</body>

</html>

相关文章

网友评论

      本文标题:2018-11-30练习一

      本文链接:https://www.haomeiwen.com/subject/wbgccqtx.html