題目

指派一個二元一次方程式並求其解

package ch4;

public class ch4_3 
{
    public static void main(String args[])
    {
        int a1,a2,b1,b2,c1,c2;
        double x,y,d;
        a1=3;
        a2=1;
        b1=1;
        b2=-2;
        c1=5;
        c2=-3;
        d=(a1*b2)-(a2*b1);
        x=((c1*b2)-(c2*b1))/d;
        y=((a1*c2)-(a2*c1))/d;
        System.out.print("x=");
        System.out.println(x);
        System.out.print("y=");
        System.out.print(y);
    }

}
結果如下

x=1.0
y=2.0

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 驢子 的頭像
    驢子

    驢子的生活日記

    驢子 發表在 痞客邦 留言(0) 人氣()