四则运算

Posted 24zhangqianwen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了四则运算相关的知识,希望对你有一定的参考价值。

public class MathP {

public static void main(String[] args) {

Scanner input=new Scanner(System.in);
int length = input.nextInt();
for(int k=0;k<length;k++) {
int i=(int)(1+Math.random()*(100-1+1));
int j=(int)(1+Math.random()*(100-1+1));
char[]ch ={‘+‘,‘-‘,‘*‘,‘/‘};
Random r =new Random();
int index = r.nextInt(ch.length);

System.out.print(i);
System.out.print(ch[index]);
System.out.print(j);
System.out.println(‘=‘);
}

以上是关于四则运算的主要内容,如果未能解决你的问题,请参考以下文章