Calculate Linear equation using Java


  1. // linear equation program  
  2.   
  3. import java.io.*;  
  4. class ssvli  
  5. {  
  6. public static void main(String arg[])  
  7. {  
  8. float x1,x2,a,b,c,d,m,n,z;  
  9. a=2;b=3;c=4;d=5;m=6;n=8;  
  10. System.out.println("1st linear equation is=>  "+a + "x1 +" + b +"x2=" +m);  
  11. System.out.println("2ed linear equation is=>  "+c + "x1 +" + d +"x2=" +n);  
  12. System.out.println("using formula and we get the val of x1 & x2 as:");  
  13. z=(a*d)-(c*b);  
  14. if(z==0)  
  15. {  
  16. System.out.println("************the denominator (a*d)-(c*b) is not equal to zero");  
  17. }  
  18. else  
  19. {  
  20. x1=(m*d-b*n)/(a*d-c*b);  
  21. x2=(n*a-m*c)/(a*d-c*b);  
  22. System.out.println("           x1="+x1);  
  23. System.out.println("           x2="+x2);  
  24. }  
  25. }  
  26.