首页课程Cours amusante Javascriptboucle while

boucle while

目录列表

条件语句的结果始终是:

填写空格以将x的值从1到5打印出来。

      var x = 1;

      (x <= ) {

        document.write(x + "<br>");

        x = +1;

      }


如果while循环没有退出条件将运行多少次:

1/3