美文网首页大数据 爬虫Python AI Sql
javascript----while /do while 循环

javascript----while /do while 循环

作者: 幼姿沫 | 来源:发表于2020-07-28 12:31 被阅读0次

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8" />

    <title>while循环</title>

    </head>

    <body>

    <script type='text/javascript'>

    //while 循环格式 var i=0;  while(i<=10){  console.log('hello world' );  i++ }

    var scores=parseInt(prompt('请输入考试成绩*'))

    while(scores<=60){

    console.log('你太弱了,不及格')

    console.log('考试了,请输入成绩')

    scores=parseInt(prompt('输入二次考试成绩'))

    scores++;

    }

    //先复习所学知识,再进行考试,如果不及格,请写明具体原因

    var i=0;

    do{

    console.log('已经进行了复习所学知识')

    scores=parseInt(prompt('请输入考试成绩*'))

    }while(i<=60)

    </script>

    </body>

    </html>

    相关文章

      网友评论

        本文标题:javascript----while /do while 循环

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