我正在尝试打印二维数组中的元素,但似乎无法格式化它。每当我尝试对其进行格式化时,都会出现错误
String [][] plants = new String[2][2];
plants[0][0] = "Rose";
plants[0][1] = "Red";
plants[1][0] = "Snowdrop";
plants[1][1] = "White";
//String plant;
//String color;
for (int i = 0; i<2; i++){
for (int j = 0; j<2; j++){
//plant = Arrays.toString(plants[i]);
//color = Arrays.deepToString(plants[j]);
//System.out.println(plant + " " + color);
System.out.println(plants[i][j]);
}
}
到目前为止,我在单独的行上打印出每个元素,但我希望它打印出来:
玫瑰红
雪莲白
我已经尝试了注释掉的方法,但它们也不会正常工作。
有什么建议么?谢谢