四则运算
2017-12-02 19:57 Robortxin 阅读(181) 评论(0) 编辑 收藏 举报程序设计思想:根据随机数,来产生60组四则运算,代码比较简单,后续会加入界面的。
源程序:
import java.util.Random;
import java.util.Scanner;
public class SiZe {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("欢迎使用四则运算");
Scanner in=new Scanner(System.in);
int c=0;
for(int i=0;i<60;i++) {
Random r = new Random();
double a = r.nextInt(99);
double b =r.nextInt(99);
int S =r.nextInt(4);
if(a>=b) {
if(S==0)
{
System.out.println(a+"+"+b+"=" );
}
if(S==1)
{
System.out.println(a+"-"+b+"=" );
}
if(S==2)
{
System.out.println(a+"*"+b+"=" );
}
if(S==3)
{
System.out.println(a+"/"+b+"=" );
}
}
if(a<b) {
if(S==0)
{
System.out.println(b+"+"+a+"=" );
}
if(S==1)
{
System.out.println(b+"-"+a+"=" );
}
if(S==2)
{
System.out.println(b+"*"+a+"=" );
}
if(S==3)
{
System.out.println(b+"/"+a+"=" );
}
}
}
}
}
程序截图: