#22551: 克拉瑪求解AC


fastrvretk@gmail.com (Abas Tanmia)

學校 : 不指定學校
編號 : 128721
來源 : []
最後登入時間 :
2020-09-03 14:28:56
a410. 解方程 -- TYVJ | From: [120.107.208.136] | 發表日期 : 2020-09-14 21:09

#include<stdio.h>

 

int main(){

 

    int a1, b1, c1;

    int a2, b2, c2;

    scanf("%d %d %d %d %d %d", &a1, &b1, &c1, &a2, &b2, &c2);

 

    float del=a1*b2-b1*a2;

    float del_x=c1*b2-b1*c2;

    float del_y=a1*c2-c1*a2;

 

    if (del==0 && (del_x!=0 || del_y!=0)) printf("No answer\n");

    else if (del==0 && (del_x==0 && del_y==0)) printf("Too many\n");

    else if (del!=0) {

        printf("x=%.2f\n", del_x/del);

        printf("y=%.2f\n", del_y/del);

    }

 

    return 0;

}

 

 
ZeroJudge Forum