2019年12月3日 星期二

【C語言】解二元一次方程式

這個程式以國中的數學解法, 解出二元一次方程式的兩個未知數。

#include 

int main ()
{
 double a, b, c, d, e, f;
 double g, h;
 double x, y;
 scanf("%lf %lf %lf %lf %lf %lf", &a, &b, &c, &d, &e, &f);
 if (a/b==d/e)
 {
  if (a/b==c/f)
  {
   printf("無限多組解");
  }
  else
  {
   printf("無解");
  }
 }
 else
 {
 g=a*e-d*b;
 h=c*e-f*b;
 x=h/g;
 y=(c-a*x)/b;
 printf("%f %f", x, y);
 }
 return 0;
}




👉【幫我們一個忙!】👈

👋如果您喜歡這篇文章,請在下方按5個Like!
 ❤您的支持是我們最大的動力!

您只要登入帳號(Facebook、Google),在下方按5個Like,我們就會收到來自LikeCoin基金會的贊助。
您只需要支持我們,完全不會花到錢!