こんにちは私はこのプログラムを持っています、そして私はあなたが最初の行と最後の行を変更するために私が何ができると思いますか知りたいと思いました
例えば:
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();
}
}