标签:sys return ext col 很多 new ati 简单的 题目
1 import java.util.*; 2 3 public class Main { 4 5 static int getit(int[][] a, int n) { 6 if(n == 1) return a[0][0]; 7 if(n == 2) return a[0][0] * a[1][1] - a[0][1] * a[1][0]; 8 int[][] shuzu = new int[n-1][n-1]; 9 int ans = 0; 10 for(int i = 0; i < n; ++i) { //每次将a[0][i]的行列去掉,赋值给一个新的数组 11 for(int x = 0; x < n-1; ++x) { 12 for(int y = 0; y < i; ++y) 13 shuzu[x][y] = a[x+1][y]; 14 for(int y = i; y < n-1; ++y) 15 shuzu[x][y] = a[x+1][y+1]; 16 17 } 18 19 20 ans += a[0][i] * Math.pow(-1, i) * getit(shuzu, n-1); //然后进行递归 21 } 22 return ans; 23 } 24 25 public static void main(String args[]) { 26 27 Scanner sc = new Scanner(System.in); 28 int n = sc.nextInt(); 29 int[][] shu = new int[n][n]; 30 for(int i = 0; i < n; i++) 31 for(int j = 0; j < n; j++) 32 shu[i][j] = sc.nextInt(); 33 System.out.print(getit(shu, n)); 34 35 36 } 37 }
同时也激发起我对线性代数的求生欲 0.0
标签:sys return ext col 很多 new ati 简单的 题目
原文地址:https://www.cnblogs.com/ohuo/p/12335145.html