变更后的需求
1.程序运行在终端或控制台上
2.程序可以扩展出优秀界面,即核心部分可重用并可拓展
3.题目可包含括号
4.限定题目数量,"精美"打印输出
5.支持分数出题和运算
6.约分和带分数
分析和设计
1.原出题程序为网页版,现在新建了一个加载出题核心的类用于在终端中提供用户使用,并带有提示和运行逻辑。
2.核心出题类提供多种需求参数列表,并作出相应处理,为不同难度和需求生成相应题目。
3.括号和题目计算部分可以使用"逆波兰","后缀表达式"或"堆栈",本程序计算部分选择使用栈维护运算数和运算符,用ArrayList维护随机生成的括号位置列表,然后使用TreeMap计算并保存应该生成括号的位置,最后在题目生成的时候进行拼接。
4.题目数量可以由用户自行输入,输入题目难度和数量以后可选择答题模式或者打印模式,答题模式可以边答题边判题,错误的给出正确答案,最后生成答题结果,即答题正确数量和错误数量。打印模式则直接生成相应数量题目并给出结果。
5.分数运算则新建Fraction类,并添加加减乘除的相应函数,注意java不支持运算符重载,Fraction类包含随机生成函数,可以生成随机的分数,并保证不为0或者分母为零,以免发生除零错误。
6.类中还包含一个约分函数,方便运算和减少溢出情况的发生。带分数可以使用%运算符来求出,通过重新toSting函数来输出带分数。
程序的使用设计
程序启动时用户选择题目难度或者查看题目难度说明,然后选择出题数量,接着选择运行模式,即直接查看答案的打印模式还是边出题边答题的答题模式。
简易运行流程图:
部分代码实现
Fraction类定义(分数类),截取部分
1 package cn.edu.nenu.cw2016.zjs.paperUtil;
2
3 public class Fraction {
4 public int up;
5 public int down;
6
7 public Fraction(int up, int down) {
8 if (down == 0 | up == 0) {
9 System.out.println("divided by zero error");
10 return;
11 }
12 int smaller = up > down ? up : down;
13 int maxCommOnFactor= 1;
14 for (int i = 1; i <= smaller; i++) {
15 if (up % i == 0 && down % i == 0) {
16 maxCommOnFactor= i;
17 }
18 }
19
20 this.up = up / maxCommonFactor;
21 this.down = down / maxCommonFactor;
22 }
23
24 public Fraction(Fraction f) {
25 if (f.down == 0 | up == 0) {
26 System.out.println("divided by zero error");
27 return;
28 }
29
30 f = f.gcd(f);
31 this.up = f.up;
32 this.down = f.down;
33 }
34
35 public Fraction gcd(Fraction f) {
36 int smaller = f.up > f.down ? f.up : f.down;
37 int maxCommOnFactor= 1;
38 for (int i = 1; i <= smaller; i++) {
39 if (f.up % i == 0 && f.down % i == 0) {
40 maxCommOnFactor= i;
41 }
42 }
43 f.up = f.up / maxCommonFactor;
44 f.down = f.down / maxCommonFactor;
45
46 return f;
47 }
48
49 public String toString() {
50 if (down == 1)
51 return "" + up;
52 if(Math.abs(up)/down>0){
53 return up>0?up/down+" "+up%down+"/"+down:"-"+Math.abs(up)/down+" "+Math.abs(up)%down+"/"+down;
54 }
55 return up + "/" + down;
56 }
57
58 public Fraction add(Fraction f) {
59 Fraction a = new Fraction(up, down);
60 a.up = f.up * a.down + a.up * f.down;
61 a.down = a.down * f.down;
62
63 return a.gcd(a);
64 }
65
66 public Fraction minus(Fraction f) {
67 Fraction a = new Fraction(up, down);
68 a.up = a.up * f.down - f.up * a.down;
69 a.down = a.down * f.down;
70
71 return a.gcd(a);
72 }
73
74 public Fraction multiply(Fraction f) {
75 Fraction a = new Fraction(up, down);
76 a.up = a.up * f.up;
77 a.down = a.down * f.down;
78 return a.gcd(a);
79 }
80
81 public Fraction divide(Fraction f) {
82 Fraction a = new Fraction(up, down);
83 a.up = a.up * f.down;
84 a.down = a.down * f.up;
85 return a.gcd(a);
86 }
87
88 public Fraction changeSign(){
89 up = -up;
90 return this;
91 }
92
93 public static Fraction getRandiom(int Max) {
94 return new Fraction((int) (Math.random() * Max / 2) + 1, (int) (Math.random() * Max / 2) + 1);
95 }
96
97 public static Fraction getRandiom(int Max, boolean isInt) {
98 return new Fraction((int) (Math.random() * Max / 2) + 1, isInt ? 1 : (int) (Math.random() * Max / 2) + 1);
99 }
100 }
题目生成
1 public String generateQuestion(int numOfOperand, int rangeMin, int rangMax, SupportedOperation[] operation,20 ioperands[i] = (int) (Math.random() * rangMax / 2 + 1);
2 boolean isFractional, boolean hasbracket) {
3 String question = "";
4 int[] ioperands = null;
5 ArrayListaf = new ArrayList ();
6 SupportedOperation[] so = null;
7 if (numOfOperand <2) {
8 System.out.println("操作数数量至少为2");
9 return "";
10 }
11 if (rangMax > 500) {
12 System.out.println("操作数数最大值不能超过500");
13 return "";
14 }
15 getBcPrint(numOfOperand);
16 if (!isFractional) {
17 ScriptEngine se = new ScriptEngineManager().getEngineByName("Javascript");
18 ioperands = new int[numOfOperand];
19 for (int i = 0; i) {
括号维护和答案计算
1 public String answer;14 Integer[] bracket = new Integer[2];
2
3 Stackoplist = new Stack ();
4 Stacknumlist = new Stack ();
5 ArrayListbclist;
6 TreeMapfrequency;
7 TreeMapdirection;
8
9 private void getBcPrint(int numOfOperand) {
10 bclist = new ArrayList();
11 if (numOfOperand > 2) {
12 int bcnum = (int) (Math.random() * (numOfOperand - 2));
13 for (int n = 0; n) {
程序运行结果:
简单难度答题:
普通难度出题打印:
复杂题目出题打印:
程序退出:
结对编程体会
结对编程可以了解队友的编程习惯和解决问题的思路,学习对方的解决问题方式,而且当一个人遇到瓶颈的时候,另一个人可能会提前想出思路,多种解决方式的时候可以择优选择。这种工作模式有点像cpu的双核处理器,两个线程同时工作,一定程度上可以快速的开发项目,并减少代码合并带来的麻烦。这个工作模式以前也是尝试过的,尤其是主要作为指导在旁边跟进时效率不一定会很高,思维的协调不一定比直接看结果来的快,不过对于学习阶段很是受用。
争论点:
1.整除问题:输出结果在尽量调节为整数的情况下可能因括号的出现导致结果为小数或者分数,对于这样的情况选择直接重出题目(仅限简单和普通难度的问题)
2.分数减法入栈出栈顺序:计算结果采用栈来解决,出栈时仅剩加减法需要运算,当出现减法,甚至连减时选择将减法换为加法运算,然后改变操作数符号,即Fraction.changSign();
3.括号列表维护:括号生成是根据操作数数量决定的,生成括号位置列表时排除无效和冗余括号,最后将括号列表转化位置和括号方向、数量的Map,用于打印括号,即先有操作数后有括号的设计,而不是括号匹配的方式
4.连除问题:用计数器检测除法的出现,防止连除,但是不会妨碍一个题目出现两个或更多的除法运算(仅限简单和普通难度)。因为在整数运算中,为保证可以整除,需要改变被除数,这样做太多次连除会导致最顶层操作数过大,不利于题目平衡性
花费时间较长的问题:括号列表维护
结对编程照片:
工程地址:https://coding.net/u/jx8zjs/p/paperOne/git
ssh://git@git.coding.net:jx8zjs/paperOne.git