2024/9/25日工作日志
学习Java图形化界面基础知识;
复习英语单词120个;
学习英语单词10个;
完成Java随机生成30道运算题课后作业;
import java.util.Random;
public class Mistakes {
public static void main(String[] args){
Random rand=new Random();
for(int i=0;i<30;i++) {
int x=rand.nextInt(100);
int y=rand.nextInt(100);
int z=rand.nextInt(4);
if(z0) System.out.println(x + "+" + y + "=");
if(z1) System.out.println(x + "*" + y + "=");
if(z2) System.out.println(x + "/" + y + "=");
if(z3) System.out.println(x + "-" + y + "=");
}
}
}