用C语言写个求解二元一次方程组的程序

要求能通过输入系数求不同的方程组
2024-11-04 04:26:46
推荐回答(3个)
回答(1):

double int[] fun(int[] a,int[] b)
{
int re[2];
re[0]=re[1]=0;
if((a[0]==0&&a[1]==0)||(a[0]==0&&b[0]==0)||(b[0]==0&&b[1]==0)||(a[1]==0&&b[1]==0))
return re;
if(a[0]!=0)
{
re[1]=(a[0]*b[2]-b[0]*a[2])/(a[0]*b[1]-a[1]*b[0]);
re[0]=(a[2]-re[1]*a[1])/a[0];
}
else
{
re[1]=a[2]/a[1];
re[0]=(a[2]-a[1]*y)/b[0];
}
return re;
}

回答(2):

你说的是一般二元一次方程组吗?
如:
ax+by+c=0?

回答(3):

手机是不是机器人