高斯列主元消去法_解线性方程组的直接解法
标签:计算方法实验
#include <stdio.h>
#include <math.h>
const int maxn = 15;
double a[maxn][maxn], b[maxn];
int main()
{
int n;
freopen("gauss.txt", "r", stdin); //读入数据
scanf("%d", &n);
for(int i = 1; i <= n; i++)
{