码迷,mamicode.com
首页 > 其他好文 > 详细

二元一次方程组

时间:2016-10-13 14:35:06      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

学生:宋丹丹 张潇裕

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);
}
}

二元一次方程组

标签:

原文地址:http://www.cnblogs.com/sdds/p/5955832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!