zyl222
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)]+"=");
}
}
}

分类:

技术点:

相关文章:

  • 2022-01-01
  • 2022-01-01
  • 2022-01-01
  • 2022-02-14
  • 2021-10-17
猜你喜欢
  • 2022-01-01
  • 2022-01-01
  • 2021-10-19
  • 2021-09-17
  • 2022-01-01
  • 2022-01-01
相关资源
相似解决方案