java,定义一个3×5的二维整数数组,遍历数组,把数组的值用空格隔开打印。样式就按3×5矩形的方式显示,打印第一行第二列,第二行第四列的数值
时间: 2023-05-30 10:04:08 浏览: 88
以下是Java代码:
```
public class Main {
public static void main(String[] args) {
int[][] arr = {{1, 2, 3, 4, 5}, {6, 7, 8, 9, 10}, {11, 12, 13, 14, 15}};
// 遍历数组,打印每个元素
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
System.out.print(arr[i][j] + " ");
}
System.out.println(); // 每行结束后换行
}
// 打印第一行第二列和第二行第四列的数值
System.out.println("第一行第二列的数值为:" + arr[0][1]);
System.out.println("第二行第四列的数值为:" + arr[1][3]);
}
}
```
输出结果为:
```
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
第一行第二列的数值为:2
第二行第四列的数值为:9
```
阅读全文