if回顾1

作者: 浮_屠 | 来源:发表于2018-11-30 11:05 被阅读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<88&&score>60){
                        alert('奖励一本参考书');
                     }else{
                        alert('要什么奖励');
                     }
                     
                </script>
            </head>
            <body>
                
            </body>
        </html>
    

    相关文章

      网友评论

          本文标题:if回顾1

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