我正在試驗數組,並且我可以弄清楚如何根據用戶輸入輸入2d數組的元素,我無法弄清楚如何提示用戶分開輸入2d數組的整行(每個數字之間有一個空格),而不是輸入每個數字,然後按回車鍵。我能在這裏得到一些幫助嗎?我知道這將是我的下一個測試,謝謝你們!如何將整行元素輸入到2d數組
這裏是我的代碼:
import java.util.Scanner;
public class NewArray
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.print("Enter the number of rows: ");
int Rows = input.nextInt();
System.out.print("Enter the number of columns: ");
int Columns = input.nextInt();
int[][] array = new int[Rows][Columns];
System.out.println("Enter the numbers in array: ");
for (int i = 0; i < array.length; i++)
{
for (int j = 0; j < array[i].length; j++)
array[i][j] = input.nextInt();
}
System.out.println(isConsecutiveFour(array));
}