你好我有这个程序,我想知道你认为我能做些什么来改变第一行和最后一行
例如:
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
变成:
4 2 3 1
8 6 7 5
12 10 11 9
16 14 15 13
这就是我到目前为止所拥有的
import java.io.*;
import java.util.Scanner;
public class DynamicMatrix {
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
System.out.println("Enter the number of rows and colomns:");
int row=sc.nextInt();
int col=sc.nextInt();
int arr[][]=new int[row][col];
System.out.println("Enter the numbers for the matrix:");
for(int i=0;i<row;i++)
for(int j=0;j<col;j++)
arr[i][j]=sc.nextInt();
}
}