码迷,mamicode.com
首页 > 编程语言 > 详细

用Java实现四则运算

时间:2017-03-12 21:05:42      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:and   style   []   运算   stat   string   dom   ring   font   

public class math {
public static void main(String[] args) {

String[] operate=new String[]{"+","-","×","÷"};
int[] numbers=new int[300];

for(int i=1;i<=300;i++){
numbers[i-1]=i;
}
Random r=new Random();

for(int i=0;i<300;i++){

System.out.println(numbers[r.nextInt(300)]+operate[r.nextInt(4)]+numbers[r.nextInt(300)]+"=");
}
}
}

用Java实现四则运算

标签:and   style   []   运算   stat   string   dom   ring   font   

原文地址:http://www.cnblogs.com/zyl222/p/6538979.html

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