首页 > 代码库 > 二元一次方程组

二元一次方程组

学生:宋丹丹 张潇裕

public class Test5 {
public static void main(String[] args) {
int max=10;
int a;
int b;
int c;
int d;
int e;
int f;
a=(int)(Math.random()*max+1);
b=(int)(Math.random()*max+1);
c=(int)(Math.random()*max+1);
d=(int)(Math.random()*max+1);
e=(int)(Math.random()*max+1);
f=(int)(Math.random()*max+1);
String s=a+"x+"+b+"y+"+c+"=0";
String r=d+"x+"+e+"y+"+f+"=0";
System.out.println(s);
System.out.println(r);
}
}

二元一次方程组