四则运算

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(‘=‘);
}

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

C语言中随机产生四则运算符号

用C语言随机产生三个数,三个数之间进行四则运算,四则运算也随机产生

用c++语言编写四则运算计算器

java四则运算

定义一个方法,实现四则运算的功能。java

四则运算2开发简介