《结对-四则运算生成器-开发过程》

Posted cxy_li_ming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《结对-四则运算生成器-开发过程》相关的知识,希望对你有一定的参考价值。

项目地址(码云):https://gitee.com/tdxm_bq/sizeyunsuan/

使用android stdio编辑器

 

class Num {
private int max = 100;
private int min = 1;

public int getMin() {
return min;
}

public void setMin(int min) {
this.min = min;
}

public int getMax() {
return max;
}

public void setMax(int max) {
this.max = max;
}
public int shu(){
Random random = new Random();
int s = random.nextInt(max)%(max-min+1) + min;
return s;
}
public int fu(){
Random random = new Random();
int s = random.nextInt(4)%(4-1+1) + 1;
return s;
}
}
运算参数的随机生成部分单独创建了一个类来实现。
if(f == 1){
s1 = a.shu();
s2 = a.shu();
s3 = s1 + s2;
timu[0] = s1 + "+" +s2;
jieguo[0] = Double.toString(s3);
}else if(f == 2){
s1 = a.shu();
s2 = a.shu();
s3 = s1 - s2;
timu[0] = s1 + "-" +s2;
jieguo[0] = Double.toString(s3);
}else if(f == 3){
s1 = a.shu();
s2 = a.shu();
s3 = s1 * s2;
timu[0] = s1 + "*" +s2;
jieguo[0] = Double.toString(s3);
}else if(f == 4){
s1 = a.shu();
s2 = a.shu();
s3 = s1 / s2;
timu[0] = s1 + "/" +s2;
jieguo[0] = Double.toString(s3);
}
运算符用随机生成数字来实现1~4对应4个运算符。

基本效果如上



以上是关于《结对-四则运算生成器-开发过程》的主要内容,如果未能解决你的问题,请参考以下文章

《结对编程-四则运算生成器-开发过程》

《结对编程-四则运算生成器-开发过程》

结对-四则运算生成器-开发环境搭建过程

结对-四则运算答题器-开发过程

结对-四则运算答题器-开发过程

结对-结对编项目作业名称-测试过程