摘要: 今天完成了课后第一题: 随机生成三十道四则运算题 import java.util.Random; public class ArithmeticQuizGenerator { private static final char[] OPERATORS = {'+', '-', '*', '/'}; 阅读全文
posted @ 2024-09-23 23:06 杨家兴 阅读(6) 评论(0) 推荐(0) 编辑