• <bdo id='B5BPb'></bdo><ul id='B5BPb'></ul>
        <i id='B5BPb'><tr id='B5BPb'><dt id='B5BPb'><q id='B5BPb'><span id='B5BPb'><b id='B5BPb'><form id='B5BPb'><ins id='B5BPb'></ins><ul id='B5BPb'></ul><sub id='B5BPb'></sub></form><legend id='B5BPb'></legend><bdo id='B5BPb'><pre id='B5BPb'><center id='B5BPb'></center></pre></bdo></b><th id='B5BPb'></th></span></q></dt></tr></i><div id='B5BPb'><tfoot id='B5BPb'></tfoot><dl id='B5BPb'><fieldset id='B5BPb'></fieldset></dl></div>

      1. <legend id='B5BPb'><style id='B5BPb'><dir id='B5BPb'><q id='B5BPb'></q></dir></style></legend>
      2. <small id='B5BPb'></small><noframes id='B5BPb'>

        <tfoot id='B5BPb'></tfoot>

        仅使用 for 循环和条件语句的 Javascript 打印方块

        时间:2023-10-01
        <legend id='g9Ygg'><style id='g9Ygg'><dir id='g9Ygg'><q id='g9Ygg'></q></dir></style></legend>
          <i id='g9Ygg'><tr id='g9Ygg'><dt id='g9Ygg'><q id='g9Ygg'><span id='g9Ygg'><b id='g9Ygg'><form id='g9Ygg'><ins id='g9Ygg'></ins><ul id='g9Ygg'></ul><sub id='g9Ygg'></sub></form><legend id='g9Ygg'></legend><bdo id='g9Ygg'><pre id='g9Ygg'><center id='g9Ygg'></center></pre></bdo></b><th id='g9Ygg'></th></span></q></dt></tr></i><div id='g9Ygg'><tfoot id='g9Ygg'></tfoot><dl id='g9Ygg'><fieldset id='g9Ygg'></fieldset></dl></div>
              <tfoot id='g9Ygg'></tfoot>

                <small id='g9Ygg'></small><noframes id='g9Ygg'>

                  <tbody id='g9Ygg'></tbody>
                  <bdo id='g9Ygg'></bdo><ul id='g9Ygg'></ul>

                  本文介绍了仅使用 for 循环和条件语句的 Javascript 打印方块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  刚开始我的大学课程,在 javascript 方面有点挣扎.我被要求使用任何字符显示一个正方形,但是,解决方案必须结合 for 循环和 if 语句.

                  Just started my uni course, struggling a little with javascript. I have been asked to display a square using any character, however, the solution must combine for loops and if statements.

                  这是我到目前为止所拥有的,我感觉非常接近,但我无法让第二行显示.我知道这可以通过两个 for 循环来完成(一个用于变量的迭代,另一个用于空格).但这不是我被要求解决这个问题的方式.

                  This is what I have so far and I feel pretty close but I just can't get the second line to display. I know this can be done via two for loops, (one for iteration of the variable and another for spaces). But this is not how I have been asked to solve this problem.

                  这是我的代码:

                  var size = 3;
                  let i;
                  
                  
                  for(i = 0; i < size; i++) {
                  print ("*");
                  if (size === i){ 
                  println (""); 
                  }
                  }
                  

                  就上下文而言,这一切都发生在教授自制的学习环境中.

                  For context, this is all taking place int he professors homemade learning environment.

                  推荐答案

                  您可以使用嵌套的 for 循环,并在每行填充后换行.

                  You could use nested for loops and take a line break after each filled line.

                  function print(s) { document.getElementById('out').innerHTML += s; }
                  function println(s) { document.getElementById('out').innerHTML += s + '
                  '; }
                  
                  var size = 5,
                      i, j;
                  
                  for (i = 0; i < size; i++) {
                      for (j = 0; j < size; j++) {
                          print("*");
                      }
                      println("");
                  }

                  <pre id="out"></pre>

                  单循环,检查 i 是否不等于 0,如果余数为零,则添加换行符.

                  Single loop with a check if i is unequal to zero and if the remainder is zero, then add a line break.

                  使用:

                  • ===身份/严格相等运算符检查类型和值,例如如果两者都是数字并且值是否相同,

                  • === identity/strict equality operator checks the type and the value, for example if both are numbers and if the value is the same,

                  !== 非恒等式/严格不等式 操作符和上面一样,但是它检查它的对立面,

                  !== non-identity/strict inequality operator it is like above, but it checks the oposite of it,

                  % 余数 运算符,返回一个数的余数,除法返回一个整数.

                  % remainder operator, which returns a rest of a number which division returns an integer number.

                  && 逻辑 AND 运算符,检查两边并返回最后一个值,如果两者都是 truthy (像任何数组、对象、非零数字、非空字符串、true)或第一个,如果它是 falsy(如 undefinednull0''(空字符串),false,truthy的反义词).

                  && logical AND operator, which check both sides and returns the last value if both a truthy (like any array, object, number not zero, a not empty string, true), or the first, if it is falsy (like undefined, null, 0, '' (empty string), false, the oposite of truthy).

                  function print(s) { document.getElementById('out').innerHTML += s; }
                  function println(s) { document.getElementById('out').innerHTML += s + '
                  '; }
                  
                  var size = 5,
                      i;
                  
                  for (i = 0; i < size * size; i++) {
                      if (i !== 0 && i % size === 0) {
                          println("");
                      }
                      print("*");
                  }

                  <pre id="out"></pre>

                  这篇关于仅使用 for 循环和条件语句的 Javascript 打印方块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何知道 if 语句中哪个条件为真? 下一篇:具有多个条件的JS三元函数?

                  相关文章

                • <tfoot id='lqnID'></tfoot>
                  <i id='lqnID'><tr id='lqnID'><dt id='lqnID'><q id='lqnID'><span id='lqnID'><b id='lqnID'><form id='lqnID'><ins id='lqnID'></ins><ul id='lqnID'></ul><sub id='lqnID'></sub></form><legend id='lqnID'></legend><bdo id='lqnID'><pre id='lqnID'><center id='lqnID'></center></pre></bdo></b><th id='lqnID'></th></span></q></dt></tr></i><div id='lqnID'><tfoot id='lqnID'></tfoot><dl id='lqnID'><fieldset id='lqnID'></fieldset></dl></div>

                        <bdo id='lqnID'></bdo><ul id='lqnID'></ul>
                    1. <legend id='lqnID'><style id='lqnID'><dir id='lqnID'><q id='lqnID'></q></dir></style></legend>

                      <small id='lqnID'></small><noframes id='lqnID'>