如何在同一行上使用for循环输出存储在数组中的多个值?

问题描述 投票:-1回答:1

我已经创建了数组,当我输入数组的值时,例如,它们显示在单独的行上...

输入第一个数组的值:754823

我希望数字显示在同一行上,但不确定如何执行。谢谢您的帮助。

public class CompareArrays
{
    public static void main(String[] args)
    {
        Scanner input = new Scanner(System.in);
        int arraySize;

        System.out.print("Enter the array size: ");
        arraySize = input.nextInt();

        int[] array1 = new int[arraySize];
        int[] array2 = new int[arraySize];

        System.out.print("Enter the values for the first array: ");
        for(int i = 0; i < arraySize; i++) {
            array1[i] = input.nextInt();
        }

        System.out.print("Enter the values for the second array: ");
        for(int i = 0; i < arraySize; i++) {
            array2[i] = input.nextInt();
        }

        if(Compare(array1, array2)) {
            System.out.println("Judgement: \t The arrays are identical");
        }else {
            System.out.println("Judgement: \t The arrays are not identical");
        }
        input.close();
    }

    public static boolean Compare(int[] array1, int[] array2)
    {   
        for (int i = 0; i < array1.length; i++) {
            if(array1[i] != array2[i]) {
                return false;
            }
        }
        return true;
    }
}
java for-loop output
1个回答
1
投票

在控制台中输入这些值时,您要按回车键,这就是为什么它看起来像在不同的行上。如果要在1行上输入值,则可以将它们输入为字符串并将其分割。

[如果您只想在一行上打印数组,则可以使用基本的for循环并使用System.out.print()。

int[] a = {1, 2, 3, 4};

for(int i = 0; i < a.length; i++) {
    System.out.print(a[i] + " ");
}
© www.soinside.com 2019 - 2024. All rights reserved.