话不多说,请看代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package demo;
import java.util.Random;
public class math {
public static void main(String[] args) {
String[] operate= new String[]{ "+" , "-" , "×" , "÷" };
int [] numbers= new int [ 1000 ];
for ( int i= 1 ;i<= 1000 ;i++){
numbers[i- 1 ]=i;
}
Random r= new Random();
for ( int i= 0 ;i< 300 ;i++){
System.out.println(numbers[r.nextInt( 1000 )]+operate[r.nextInt( 4 )]+numbers[r.nextInt( 1000 )]+ "=" );
}
}
}
|
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/lippman/p/6526860.html