我想在同一行上接受各种integer
输入,比方说2。实际上,我想以 Matrix 的形式接受输入,因为输入值将以的形式存储矩阵。
问题是我每行只能接受一个输入,然后转到下一行以接受下一个输入。我认为它的Scanner.nextInt()
会导致光标到达下一行,因为在每次输入后都必须按 enter 。
代码:
import java.util.Scanner;
public class Matrix
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
boolean flag = false;
int row = 2 , col =2;
int[][] array = new int[row][col];
do
{
System.out.printf("\n>>>>> Enter values for Matrix <<<<<\n");
try
{
for (int i = 0; i < row; i++)
{
System.out.print("\n[ ");
for (int j = 0; j < col; j++)
{
array[i][j] = input.nextInt();
System.out.print(" ");
}
System.out.print(" ]\n");
}
flag = true;
}
catch(Exception e)
{
System.out.println("Invalid Input. Try Again.");
String flush = input.next();
flag = false;
}
}while(!flag);
}
}
输出:
所需的输出:
[2 3]
[8 4]
我已经在互联网上搜索了此问题,但是每个人都在每行输入一个输入,但是我希望它以矩阵样式输入。
答案 0 :(得分:1)
您可以将输入行读取为一串数字,并用空格分隔然后将其分割
for (int i = 0; i < row; i++)
{
System.out.print("\n[ ");
String matrixRow = input.next();
String[] numbers = matrixRow.split(" ");
for (int j = 0; j < col; j++)
{
array[i][j] = Integer.parseInt(numbers[j]);
}
System.out.print(" ]\n");
}