使用嵌套循环根据数字固定在缩进空间中

时间:2016-11-10 17:10:44

标签: java string loops nested-loops

我需要一些帮助。我希望我的程序根据用户的输入打印不同的数字,并用该数量的空格缩进该数字。必须使用嵌套循环。

预期输出(比方说用户类型3

0  
 1
  2
   3
为简单起见,我只是向您展示我在嵌套for循环中所做的事情并忽略了用户的输入部分。

我做了什么:

for (i=0; i<=userNum; i++) 
  {
     for (j=0; j<=i; j++) 
     {
        ? (I think here is the problem as I don't know how to indent by that no of spaces)
     }
     System.out.println(i);
  }  

提前致谢!

1 个答案:

答案 0 :(得分:1)

在循环内你应该使用

System.out.print(" ");