while

作者: Tellme丶 | 来源:发表于2018-12-12 19:00 被阅读0次

计算年份

<!DOCTYPE html>
    <html>
    <head>
        <title>循环</title>
        <meta charset="utf-8">
        <script type="text/javascript">
            var a = 1000;
            var j = 0;
            while(true){
                if(a>5000){
                    break;
                }
                a*=1.05;
                j++;
            }
            alert(j+'年');
            alert(a+'元');
        </script>
    </head>
    <body>

    </body>
    </html>

合法输入小明成绩

<!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8" />
            <title>if练习1</title>
            <script type="text/javascript">
                /*
                 *  从键盘输入小明的期末成绩:
                 *  当成绩为100时,'奖励一辆BMW'
                 *  当成绩为[80-99]时,'奖励一台iphone15s'
                 *  当成绩为[60-80]时,'奖励一本参考书'
                 *  其他时,什么奖励也没有
                 */
                 while(true){
                    var score = prompt("请输入小明的期末成绩(0-100):");
                    if(score <= 100 && score >= 0){
                        break;
                    }
                    alert('输入不合法')
                 }
                 
                 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>

相关文章

网友评论

      本文标题:while

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