博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
随机生成题目运算
阅读量:5086 次
发布时间:2019-06-13

本文共 722 字,大约阅读时间需要 2 分钟。

package p;

import java.lang.Math;

public class Suanshu {

public static void main(String[] args) {

int[] a = new int[30];
for (int i = 0; i < 30; i++) {
int A = (int) (Math.random() * 100);
int B = 1 + (int) (Math.random() * 100);
int C = 1 + (int) (Math.random() * 4);
if (C == 1) {
System.out.println(A + "+" + B + "=?");
a[i] = A + B;
}
if (C == 2) {
System.out.println(A + "-" + B + "=?");
a[i] = A - B;
}
if (C == 3) {
System.out.println(A + "*" + B + "=?");
a[i] = A * B;
}
if (C == 4) {
if (B != 0) {
System.out.println(A + "/" + B + "=?");
a[i] = A / B;
}

}

}
System.out.print("答案是");
for (int i = 0; i < 30; i++)
{
System.out.print(i+1 +"."+a[i]+" ");
}

}

}

 

 

 

 

转载于:https://www.cnblogs.com/sanzangtdashi/p/5262126.html

你可能感兴趣的文章
从SQL Server 2005 中 导入 导出 excel 表格
查看>>
R Shiny(开源的R包)
查看>>
用Tensorflow做蝴蝶检测
查看>>
Hbuilder编辑器 设置less即时编译环境
查看>>
flash builder 调试问题。由于现有版本正在使用中,因此无法安装flash player
查看>>
null 和 undefined 的区别
查看>>
Educational Codeforces Round 56 Editorial
查看>>
BCD码(二-十进制)
查看>>
使用JavaScript扫描端口
查看>>
qdtuling.xyz 7.8
查看>>
Java工程师成神之路
查看>>
【canvas】先绘制标准图形,在进行图形变换
查看>>
两个命令:hdparm和iozone参数解释
查看>>
angular设置全局变量,修改监听变量
查看>>
alter column和modify column
查看>>
线性代数矩阵知识
查看>>
uni-app教程入门视频资料
查看>>
PHP 语法
查看>>
java程序在linux上持续运行方法 nohup 和 tmux
查看>>
Tomcat组件梳理—Service组件
查看>>