团队博客地址:

甘佳萍:http://www.cnblogs.com/gjpg/

李鹏飞:http://www.cnblogs.com/l549023320/

赵创佳:http://www.cnblogs.com/7763255qw/

口袋精灵,

bug发现:

1、在运行过程中会出现程序闪退。

2、运行过程中音乐没办法关闭。

3、不能退出。

单元测试代码如下:

package com.example.mathsapp;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.util.*;
public class KuohaoCalc {
     ; // 记录单个运算数据的长度
     static DecimalFormat decimal = new DecimalFormat("#.##");

     // 判断是否有带括号的运算字符串存在
     public String interceResult(String str) {
      String finalresult;
      String result = str;
      char[] numberString = str.toCharArray();
      ; // 记录“(”的实际数量
      ; // 记录“)”的实际数量
      ; i < numberString.length; i++) {
       if ('(' == numberString[i]) {
        // 记录最后一个正括号的位置
        IndexStart = i;
       }
       if (')' == numberString[i]) {
        // 记录反括号的最初始下标的位置
        EndStart = i;

        // 截取最里面一个括号里的运算字符串
        result = result.substring(IndexStart + , EndStart);

        // 截取括号的运算字符串进行运算,生成新的运算字符串
        result = str.substring(, IndexStart)
          + interceptOperation(result, '*', '÷')
          + str.substring(EndStart + , str.length());

        // 回调执行,其它小括号的运算字符串
        return interceResult(result);
       }
       )
        )
         break;
      }
      // 不存在括号了,再进行混合运算
      result = interceptOperation(str, '*', '÷');
      double res=Double.parseDouble(result);
      decimal.setRoundingMode(RoundingMode.HALF_UP);//四舍五入
      finalresult=String.valueOf(decimal.format(res));
      return finalresult;
     }

     // 不带括号的四则运算
     private static String interceptOperation(String operationNumber, char a,
       char b) {
      String mess = operationNumber;
      char[] stringOperation = mess.toCharArray();

      // 循环遍历运算字符串,并做相应的运算
      ; i < stringOperation.length; i++) {

       // 判断运算符所在的索引
       if (stringOperation[i] == a || stringOperation[i] == b) {
        ) {
         // 运算符前的第一个数
         , i));

         // 记录第一个数据的长度
         int frontPosition = intercePosition;

         // 运算符前的第二个数
         ,
           stringOperation.length));

         // 记录第二个数据的长度
         int backPosition = intercePosition;

         // 算完乘除,将结果替换到原来运算的位置,得到新的运算字符串
         String IndexMess = mess.substring(, i - frontPosition + );
         String IndexResult = "";

         // 判断是否运算到最后的结果了

           && IndexMess.indexOf(
           && IndexMess.indexOf(
           && IndexMess.lastIndexOf()
          IndexMess = "";
         if (IndexMess != "")
          IndexResult = IndexMess.lastIndexOf('-') == IndexMess
            .length() -  ? IndexMess.substring(, i
            - frontPosition) : IndexMess;

         // 组装新的运算字符串
         mess = IndexResult// mess.substring(0,i-frontPosition+1)
           + reslutString("" + stringOperation[i], num1, num2)
           + mess.substring(i + backPosition + );
         // 0.111/1212/2/2/2/2/2/2/2
          && mess.indexOf(
           && mess.indexOf(
           && mess.indexOf() {
          break;
         }
         // 回调,继续运算
         return interceptOperation(mess, a, b);// 1+7-5+89/3+4-6*8/2+4-6
        } else
         continue;
       }
       ) {
        // 递归出口,判断是否还有运算字符串在
         || mess.indexOf()
         return interceptOperation(mess, '+', '-');
        break;
       }
      }
      return mess;
     }

     // 截取第二个数
     private static double interceptNumEnd(String str) {
      ;
      ;
      char[] stringOperation = str.toCharArray();
      boolean ispas = false; // 记录是否为负数
      ; i < stringOperation.length; i++) {
       switch (stringOperation[i]) {
       case '*':
       case '÷':
       case '+':
       case '-':
        InrerceIndex = i;
        ) // 判断该数是否为负数
         ispas = true;
        break;
       default:
        break;
       }
       if (ispas)
        break;
      }
      // 判断此数据是否在运算字符串的最后一位
      ) {
       a = Double.parseDouble(str);
       intercePosition = str.length();
       if (ispas)
        intercePosition++;

      } else {
       a = Double.parseDouble(str.substring(, InrerceIndex));
       // 记录数据的真实长度
       intercePosition = str.substring(, InrerceIndex).length();
      }
      return a;
     }

     // 截取第一个数
     private static double interceptNumIndex(String str) {
      ; // 记录数据
      ; // 记录运算符的位置
      boolean temp = false; // 记录数据前运算符的状态
      char[] stringOperation = str.toCharArray();
      ; i >= ; i--) {
       switch (stringOperation[i]) {
       case '*':
       case '÷':

       case '+':
       case '-':
        InrerceIndex = i;
        temp = true;
        break;
       default:
        break;
       }
       if (temp)
        break;
      }
      // 判断此数据是否在运算字符串的第一位
      ) {
       a = Double.parseDouble(str);
       intercePosition = str.length();
       // if(temp)
       // intercePosition++;
      } else {
       a = Double.parseDouble(str.substring(InrerceIndex, str.length()));
       // 记录数据的真实长度
       intercePosition = str.substring(InrerceIndex, str.length())
         .length();
      }
      return a;
     }

     // 计算结果
     private static double reslutString(String operation, double num1,
       double num2) {
      ;
      if (operation.equals("*"))
       sumResult = num1 * num2;
      if (operation.equals("-"))
       sumResult = num1 - num2;
      if (operation.equals("÷"))
       sumResult = num1 / num2;
      if (operation.equals("+"))
       sumResult = num1 + num2;
      return sumResult;
     }

    }

测试结果:

由于时间的能力有限,暂时没法修复bug;

0422 发现( 数学口袋精灵)bug的更多相关文章

  1. 0422 寻找数学口袋精灵BUG

    首先要部署这个app项目就是第一步: 一.前提下载并安装JDK 在线图解:手把手教你安装JDK      http://www.lvtao.net/server/windows-setup-jdk.h ...

  2. 0422数学口袋精灵bug发现

    团队成员的博客园地址: 蔡彩虹:http://home.cnblogs.com/u/caicaihong/ 曾治业:http://www.cnblogs.com/zzy999/ 蓝叶:http://w ...

  3. 0422“数学口袋精灵”BUG发现

    团队成员的博客园地址: 曾治业:http://www.cnblogs.com/zzy999/ 蔡彩虹:http://www.cnblogs.com/caicaihong/ 蓝叶:http://www. ...

  4. "数学口袋精灵"bug的发现

    团队成员的博客园地址: 曾治业:http://www.cnblogs.com/zzy999/ 陈焕恳:http://www.cnblogs.com/4249ken/ 蓝叶:http://www.cnb ...

  5. "数学口袋精灵"bug

    首先要部署这个app项目就是第一步: 一.前提下载并安装JDK 在线图解:手把手教你安装JDK      http://www.lvtao.net/server/windows-setup-jdk.h ...

  6. "数学口袋精灵"bug的发现及单元测试

    1.项目内容: 团队项目:二次开发 至此,我们有了初步的与人合作经验,接下来投入到更大的团队中去. 也具备了一定的个人能力,能将自己的代码进行测试.接下来尝试在别人已有的基础上进行开发. 上一界51冯 ...

  7. 找"数学口袋精灵"bug

    团队成员的博客园地址: 刘森松:http://home.cnblogs.com/u/lssh/ 郭志豪:http://home.cnblogs.com/u/gzh13692021053/ 谭宇森:ht ...

  8. "数学口袋精灵"bug(团队)

    团队名:MY-HR 成员: 学号 博客园 团队贡献分 丘惠敏(组长) 201406114203 http://www.cnblogs.com/qiuhuimin/ 5 郭明茵 201406114204 ...

  9. 0422 数学口袋精灵app

    首先要部署这个app项目就是第一步: 一.前提下载并安装JDK 在线图解:手把手教你安装JDK      http://www.lvtao.net/server/windows-setup-jdk.h ...

  10. 数学口袋精灵感受与BUG

    232朱杰 http://www.cnblogs.com/alfredzhu https://github.com/alfredzhu/ 组长,团队 230蔡京航 http://www.cnblogs ...

随机推荐

  1. Drupal7_2:安装drupal

    Drupal7_2:安装drupal 分类: Drupal72012-10-30 01:06 1074人阅读 评论(0) 收藏 举报 假设你已经搭建好了所需的必备环境,接下来就参照以下几步,快速安装一 ...

  2. 使用 SELinux 和 Smack 增强轻量级容器

    http://www.bitscn.com/os/linux/200904/158771.html 安全 Linux 容器实现指南 轻量级容器 又称作 Virtual Private Servers ...

  3. ECShop在任何页面调用最新文章并变成随机文章

    一.让最新文章变成随机文章 在根目录 打开index.php文件 查找代码 ' ORDER BY a.article_type DESC, a.add_time DESC LIMIT ' . $GLO ...

  4. android OOM分析工具LeakCanary

    http://my.oschina.net/u/255456/blog/523659?fromerr=oGosxKBf LeakCanary 只是探测到可能出现内存泄露,然后dump 一个java h ...

  5. iOS开发——项目实战总结&经典错误一

    经典错误一 No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=armv7, VA 运行报错 出现的原因:armv7s ...

  6. <img> to image_tag

    <img src="clean_wave.jpg?" alt="Clean_wave"><%= image_tag("clean_w ...

  7. TSPL学习笔记(4):数组相关练习

    最近研究函数式编程,都是haskell和scheme交互着看的,所以笔记中两种语言的内容都有,练习一般也都用两种语言分别实现. 本篇练习一些数组有关的问题,之所以与数组相关是因为在命令式编程中以下问题 ...

  8. Android网络访问库 - Retrofit学习(1)基础

    Retrofit是什么 Retrofit是一个类型安全的HTTP客户端,支持Android和Java.它是Square公司开源的项目,当前版本2.0. 在实际开发中,我们Retrofit配合OKHTT ...

  9. Mac OSX 安装nvm(node.js版本管理器)

    我的系统 1.打开github官网https://github.com/,输入nvm搜索,选择creationix/nvm,打开 2.找到Install script,复制 curl -o- http ...

  10. Android JNI 之 JNIEnv 解析

    jni.h文件 : 了解 JNI 需要配合 jni.h 文件, jni.h 是 Google NDK 中的一个文件, 位置是 $/android-ndk-r9d/platforms/android-1 ...