#11028: c 參考


g0410573 (unknown)

學校 : 國立新竹高級中學
編號 : 58016
來源 : [140.113.237.228]
最後登入時間 :
2020-10-08 17:17:18
a410. 解方程 -- TYVJ | From: [106.1.231.45] | 發表日期 : 2016-06-09 14:15

#include<stdio.h>
main()
{ double a,b,c,d,e,f,x,y;

scanf("%lf %lf %lf %lf %lf %lf",&a,&b,&c,&d,&e,&f);
if(a*e==d*b&&b*f==e*c) printf ("Too many\n");
else if(a*e==d*b&&b*f!=e*c) printf( "No answer\n");


else{
x=(c*e-b*f)/(a*e-d*b);
y=(d*c-a*f)/(b*d-a*e);
printf("x=%.2lf\n",x);
printf("y=%.2lf\n",y);}

}

 
ZeroJudge Forum