Java - 在For循环中的十个值之后打印新行

时间:2016-02-04 19:19:55

标签: java for-loop println leap-year

我一直试图制作一个简单的程序,打印出2年输入年份之间的闰年。我已经做了一个循环,每年检查是否是闰年然后打印它,但我希望能够在每一行显示10年,而不是只在一条长线上显示所有这些。

所以这样:

    1004, 1008, 1012, 1016, 1020, 1024, 1028, 1032, 1036, 1040,
    1044, 1048, 1052, 1056, 1060, 1064, 1068, 1072, 1076, 1080,
    1084, 1088, 1092, 1096, 1104, 1108, 1112, 1116, 1120, 1124,
    1128, 1132, 1136, 1140, 1144, 1148, 1152, 1156, 1160, 1164,
    1168, 1172, 1176, 1180, 1184, 1188, 1192, 1196, 1200.

而不是:

1004, 1008, 1012, 1016, 1020, 1024, 1028, 1032, 1036, 1040, 1044, 1048, 1052... 

我已经尝试了各种不同的方法来实现这一点,嵌套for循环等但是目前我似乎无法实现它。对不起,如果这是一个简单回答的愚蠢问题,我就不会长时间学习Java了。

到目前为止,这是我的代码,它将所有年份打印在一行:

import java.util.Scanner;

public class LeapYears {

    public static void main(String[] args) 
    {
        int firstY, finalY;
        Scanner kb = new Scanner(System.in);

        System.out.print("Enter start year: ");
        firstY = kb.nextInt();

        System.out.print("Enter end year: ");
        finalY = kb.nextInt();

        for(; firstY <= finalY; firstY++) {
            if ((firstY % 4) == 0) {
                if ((firstY % 100) == 0) {
                    if ((firstY % 400) == 0 ) {
                        System.out.print(firstY + ", ");
                        firstY++;
                    }
                } else {
                    System.out.print(firstY + ", ");
                }
            }
        }
    }
}

4 个答案:

答案 0 :(得分:1)

你可以这样做。

int count = 0;
for(; startYear <= endYear; startYear++) {
 System.out.print(startYear + ", ");
 count++;
 if(count == 10) {
  count = 0;
  System.out.println();
 }
}

答案 1 :(得分:0)

使用外部计数器(例如int printed = 0)来跟踪已打印的数量。在这种情况下,检查内循环是printed % 10 == 0还是调用System.out.println()

答案 2 :(得分:0)

您可以使用计数器来跟踪循环

int counter =0;
for(; firstY <= finalY; firstY++)

    {
        if ((firstY % 4) == 0)

        {
            if ((firstY % 100) == 0)

            {
                if ((firstY % 400) == 0 )

                {
                    if(counter==10) {
                         System.out.println("");
                    }
                    System.out.print(firstY + ", ");
                    firstY++;
                    counter++;

                }
            }

            else
            {
                System.out.print(firstY + ", ");
                counter++;
            }

        }
    }

答案 3 :(得分:0)

这就是我要做的。只需添加一个int计数器变量,每次打印一年就增加它。当它达到10的倍数时,只需打印一个新行。

import java.util.Scanner;

public class LeapYears 
{

public static void main(String[] args) 
{
    int firstY, finalY, counter;
    counter = 0;
    Scanner kb = new Scanner(System.in);

    System.out.print("Enter start year: ");
    firstY = kb.nextInt();

    System.out.print("Enter end year: ");
    finalY = kb.nextInt();



    for(; firstY <= finalY; firstY++)

    {
        if ((firstY % 4) == 0)

        {
            if ((firstY % 100) == 0)

            {
                if ((firstY % 400) == 0 )

                {
                    System.out.print(firstY + ", ");
                    firstY++;
                    counter++;
                    if (counter % 10 == 0) System.out.println("");
                }
            }

            else
            {
                System.out.print(firstY + ", ");
            }

        }
    }

}
}