使用3循环时如何在单独的行中打印

时间:2015-10-31 14:29:30

标签: java loops for-loop

在Java中:

public class Looping {

    public static void main(String[] args) {

        for(int a=1;a<=10;a++){
           System.out.println (a); // 
        }
        for(int a=1;a<=10;a++){
            System.out.print (a); // print without spaces
        }
        // I need to know what code should go here to start the next loop in a new line
        for(int a=1;a<=10;a++){
            System.out.print (a+ " ");//print with spaces
        }
    }
}

结果是

1
2
3
4
5
6
7
8
9
10
123456789101 2 3 4 5 6 7 8 9 10

我想知道如何将第3个循环带到新行。如下所示

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 12345678910
 1 2 3 4 5 6 7 8 9 10

3 个答案:

答案 0 :(得分:1)

只需在循环之间添加一个空的println

System.out.println ("");

答案 1 :(得分:1)

添加System.out.println(“”);循环之间。它应该工作。

答案 2 :(得分:0)

你不能只添加System.out.println();在第二次循环之后?