1
  rowsTotal = new double[rows];
  positions = new double [rows][];

  for(index = 0; index < rows; index++){
      System.out.print("Please enter number of positions in row " + (char)(index+65) + " : ");
      pos = keyboard.nextInt();
      if(pos > MAX_POSITIONS){
          System.out.print("ERROR: Out of range, try again: ");
          pos = keyboard.nextInt();
      }
      positions[index] = new double[pos];


      }


  System.out.print("(A)dd, (R)emove, (P)rint,          e(X)it : ");
  input = keyboard.next().charAt(0);
  input = Character.toUpperCase(input);


  if(input == 'P'){
      for(int index1= 0; index1 < rows; index1++){
          for(int pos1= 0; pos1 < pos; pos1++){

              System.out.print(positions[index1][pos1] + " "); 
          }



  }

  }

我希望输出将其显示为每一行的矩阵,因此对于第一行,它将是 A 行的值,第二行将是 B 行的值,依此类推

但是它在同一行中输出所有内容,例如:

0.0 0.0 0.0 0.0

而不是

0.0 0.0(A 行)

0.0 0.0(B 行)

4

3 回答 3

3

您忘记了每一行之后的换行符。

for(int index1 = 0; index1 < rows; index1++)
{
    for(int pos1 = 0; pos1 < pos; pos1++)
    {
        System.out.print(positions[index1][pos1] + " ");
    }
    System.out.println(); // <-- This one!
}
于 2013-11-04T00:22:19.250 回答
1

也许,添加一个换行符

System.out.println("");

在最里面的for循环之后?

于 2013-11-04T00:22:21.487 回答
1

添加

System.out.println("");

在你的第一个循环结束时。

于 2013-11-04T00:22:22.450 回答