Java-如何在新行之前显示数字5次

时间:2018-01-23 02:12:28

标签: java

所以我知道我必须得到其余部分以便这个工作。但是,它的工作方式非常完美,除了第一行它给我6而不是第一行的5。我认为这种情况正在发生,因为0被认为是5的倍数,但我不确定如何解决这个问题。我看了How to display 5 multiples per line?,但是我无法看到如何使用它来修复我的代码,因为它看起来并不像第一行被搞乱了。例如,如果我在正数中输入17,则为第一行提供6个数字,然后为其余数字提供5个数字。然后它给出剩下的那些我想要的东西。对于平均部分,您可以键入任何内容,因为我稍后会继续处理。所以格式应该是这样的:

4.50,5.56,2.73,8.59,7.75,

...

5.34,3.65,

这是我的代码,感谢您的帮助:

import java.text.DecimalFormat;
import java.util.Scanner;
public class ArrayFun {
    public static void main(String[] args) {
        ArrayFun a = new ArrayFun();
    }
    public ArrayFun() { 
        Scanner input = new Scanner(System.in);
        // Get input from the user 
        System.out.print("Enter a positive number: "); 
        int limit = input.nextInt();
        // Get input from the user 
        System.out.print("Enter the lower bound for average: "); 
        double lowerBound = input.nextDouble();
        // Generate an array of random scores
        double[] allScores = generateRandomArrayOfScores(limit);
        // Display scores, wrapped every 5 numbers with two digit precision 
        DecimalFormat df = new DecimalFormat("0.00"); 
        displayArrayOfScores(allScores , df);
        // Calculate the average of the scores and display it to the screen
        //double average = calculateAverage(lowerBound , allScores); //
        System.out.print("Average of " + limit + " scores "); 
        System.out.print("(dropping everything below " + df.format(lowerBound) + ") "); 
        //System.out.println("is " + df.format(average) );//
    }
    private double[] generateRandomArrayOfScores(int num) {
        double[] scores=new double[num];
        for (int i=0;i<scores.length;++i) {
            double number=Math.random()*100.0;
            scores[i]=number;
        }
        return scores;
    }
    private void displayArrayOfScores(double[] scores, DecimalFormat format) {
        System.out.println("Scores:");
        for (int i=0;i<scores.length;++i) {
            String num=format.format(scores[i]);
            if ((i%5==0)&&(i!=0)) {
                System.out.println(num+", ");
            }
            else{
                System.out.print(num+", ");
            }
        }
        System.out.println();
    }


}

1 个答案:

答案 0 :(得分:2)

问题确实是0,正好是这部分(i%5==0)&&(i!=0)。将其替换为i%5==4,它应该有效。这是因为System.out.println(...)在打印字符串后创建新行,如果计算0,1,2,3,4,5这些是6个数字,因为您对0的处理方式不同。 5个组中的最后一个数字的模数为4. (i+1)%5==0当然也可以工作,它是等价的。或者,您可以使用您的条件执行空System.out.println(),然后将数字打印为其他数字。