Java实现Andriod带看括弧的计算器代码

Java实现Andriod带看括弧的计算器代码,第1张

概述废话不多说了,一切尽在代码中,具体代码如下所示:界面<?xmlversion=\"1.0\"encoding=\"utf-8\"?>

废话不多说了,一切尽在代码中,具体代码如下所示:

界面

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"androID:background="#ff808080"><!-- 结果显示框 --><EditText androID:ID="@+ID/input"androID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"androID:cursorVisible="false"androID:gravity="right"androID:editable = "false"androID:text="0" /><!-- 接下去采tableRow的格式进行布局设计 --><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 用于显示存储结果 --><TextVIEw androID:ID="@+ID/M"androID:layout_wIDth="53sp"androID:layout_height="wrap_content"androID:text=" MEM :" /><!-- 默认显示字符串0 --><TextVIEw androID:ID="@+ID/mem"androID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"androID:text="0" /></tableRow><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 显示当前是角度还是弧度,默认是角度 --><TextVIEw androID:ID="@+ID/_drg"androID:layout_wIDth="53sp"androID:layout_height="wrap_content"androID:text=" DEG" /><!-- 清除存储结果 --><button androID:ID="@+ID/mc"androID:text="MC"androID:layout_wIDth="106sp"androID:layout_height="wrap_content" /><!-- 清除输出窗口的所有内容 --><button androID:ID="@+ID/c"androID:text="C"androID:layout_wIDth="fill_parent"androID:layout_height="wrap_content" /></tableRow><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 在角度和弧度之间切换 --><button androID:ID="@+ID/drg"androID:text="DRG"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 正弦计算 --><button androID:ID="@+ID/sin"androID:text="sin"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 余弦计算 --><button androID:ID="@+ID/cos"androID:text="cos"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 正切计算 --><button androID:ID="@+ID/tan"androID:text="tan"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 阶乘计算 --><button androID:ID="@+ID/factorial"androID:text="n!"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 退格键 --><button androID:ID="@+ID/bksp"androID:text="Bksp"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /></tableRow><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 数字7 --><button androID:ID="@+ID/seven"androID:text="7"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 数字8 --><button androID:ID="@+ID/eight"androID:text="8"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 数字9 --><button androID:ID="@+ID/nine"androID:text="9"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 除号 --><button androID:ID="@+ID/divIDe"androID:text="÷"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 左括号 --><button androID:ID="@+ID/left"androID:text="("androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 右括号 --><button androID:ID="@+ID/right"androID:text=")"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /></tableRow><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 数字4 --><button androID:ID="@+ID/four"androID:text="4"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 数字5 --><button androID:ID="@+ID/five"androID:text="5"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 数字6 --><button androID:ID="@+ID/six"androID:text="6"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 乘号 --><button androID:ID="@+ID/mul"androID:text="×"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 开方 --><button androID:ID="@+ID/sqrt"androID:text="√"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 乘方 --><button androID:ID="@+ID/square"androID:text="^"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /></tableRow><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 数字1 --><button androID:ID="@+ID/one"androID:text="1"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 数字2 --><button androID:ID="@+ID/two"androID:text="2"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 数字3 --><button androID:ID="@+ID/three"androID:text="3"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 减号 --><button androID:ID="@+ID/sub"androID:text="-"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 对数 --><button androID:ID="@+ID/log"androID:text="log"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 自然对数 --><button androID:ID="@+ID/ln"androID:text="ln"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /></tableRow><tableLayoutandroID:layout_wIDth="fill_parent"androID:layout_height="57sp"><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 数字0 --><button androID:ID="@+ID/zero"androID:text="0"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 小数点 --><button androID:ID="@+ID/dot"androID:text="."androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 等号 --><button androID:ID="@+ID/equal"androID:text="="androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 加号 --><button androID:ID="@+ID/add"androID:text="+"androID:layout_wIDth="53sp"androID:layout_height="wrap_content" /><!-- 退出计算器 --><button androID:ID="@+ID/exit"androID:text="exit"androID:layout_wIDth="106sp"androID:layout_height="wrap_content" /></tableRow></tableLayout><tableRowandroID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"><!-- 用于提示,告诉用户如何使用计算器的一些功能等 --><TextVIEw androID:ID="@+ID/T"androID:layout_wIDth="60sp"androID:layout_height="wrap_content"androID:text="reminder:" /><TextVIEw androID:ID="@+ID/tip"androID:layout_wIDth="fill_parent"androID:layout_height="wrap_content"androID:text="欢迎使用!-www.javaapk.com 提供源码" /></tableRow></linearLayout> 

代码

package com.example.yanlei.mytk;import androID.os.Bundle;import androID.support.v7.app.AppCompatActivity;import androID.vIEw.VIEw;import androID.Widget.AdapterVIEw;import androID.Widget.ArrayAdapter;import androID.Widget.button;import androID.Widget.Spinner;import java.util.ArrayList;import java.util.List;import androID.app.Activity;import androID.content.Context;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEwGroup;import androID.vIEw.animation.AnimationUtils;import androID.Widget.AdapterVIEw;import androID.Widget.BaseAdapter;import androID.Widget.gallery;import androID.Widget.gallery.LayoutParams;import androID.Widget.ImageSwitcher;import androID.Widget.ImageVIEw;import androID.Widget.VIEwSwitcher;import java.text.DecimalFormat;import java.util.StringTokenizer;import androID.os.Bundle;import androID.R.integer;import androID.app.Activity;import androID.util.Log;import androID.vIEw.Menu;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.button;import androID.Widget.EditText;import androID.Widget.TextVIEw;public class MainActivity extends AppCompatActivity {// 定义变量private button[] btn = new button[10];// 0~9十个数字private EditText input;// 用于显示输出结果private TextVIEw mem,_drg,tip;private button div,mul,sub,add,equal,sin,cos,tan,log,ln,sqrt,square,factorial,bksp,left,right,dot,exit,drg,mc,c;public String str_old;public String str_new;public boolean vbegin = true;// 控制输入,true为重新输入,false为接着输入public boolean drg_flag = true;// true为角度,false为弧度public double pi = 4 * Math.atan(1);// π值public boolean tip_lock = true;// true为正确,可以继续输入,false错误,输入锁定public boolean equals_flag = true;// 是否在按下=之后输入,true为之前,false为之后@OverrIDeprotected voID onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentVIEw(R.layout.activity_main);InitWigdet();AllWigdetListener();}@OverrIDepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.getMenuInflater().inflate(R.menu.menu_main,menu);return true;}/*** 初始化所有的组件*/private voID InitWigdet() {// 获取界面元素input = (EditText) findVIEwByID(R.ID.input);mem = (TextVIEw) findVIEwByID(R.ID.mem);tip = (TextVIEw) findVIEwByID(R.ID.tip);_drg = (TextVIEw) findVIEwByID(R.ID._drg);btn[0] = (button) findVIEwByID(R.ID.zero);btn[1] = (button) findVIEwByID(R.ID.one);btn[2] = (button) findVIEwByID(R.ID.two);btn[3] = (button) findVIEwByID(R.ID.three);btn[4] = (button) findVIEwByID(R.ID.four);btn[5] = (button) findVIEwByID(R.ID.five);btn[6] = (button) findVIEwByID(R.ID.six);btn[7] = (button) findVIEwByID(R.ID.seven);btn[8] = (button) findVIEwByID(R.ID.eight);btn[9] = (button) findVIEwByID(R.ID.nine);div = (button) findVIEwByID(R.ID.divIDe);mul = (button) findVIEwByID(R.ID.mul);sub = (button) findVIEwByID(R.ID.sub);add = (button) findVIEwByID(R.ID.add);equal = (button) findVIEwByID(R.ID.equal);sin = (button) findVIEwByID(R.ID.sin);cos = (button) findVIEwByID(R.ID.cos);tan = (button) findVIEwByID(R.ID.tan);log = (button) findVIEwByID(R.ID.log);ln = (button) findVIEwByID(R.ID.ln);sqrt = (button) findVIEwByID(R.ID.sqrt);square = (button) findVIEwByID(R.ID.square);factorial = (button) findVIEwByID(R.ID.factorial);bksp = (button) findVIEwByID(R.ID.bksp);left = (button) findVIEwByID(R.ID.left);right = (button) findVIEwByID(R.ID.right);dot = (button) findVIEwByID(R.ID.dot);exit = (button) findVIEwByID(R.ID.exit);drg = (button) findVIEwByID(R.ID.drg);mc = (button) findVIEwByID(R.ID.mc);c = (button) findVIEwByID(R.ID.c);}/*** 为所有按键绑定监听器*/private voID AllWigdetListener() {// 数字键for (int i = 0; i < 10; i++) {btn[i].setonClickListener(actionPerformed);}// 为+-x÷等按键绑定监听器div.setonClickListener(actionPerformed);mul.setonClickListener(actionPerformed);sub.setonClickListener(actionPerformed);add.setonClickListener(actionPerformed);equal.setonClickListener(actionPerformed);sin.setonClickListener(actionPerformed);cos.setonClickListener(actionPerformed);tan.setonClickListener(actionPerformed);log.setonClickListener(actionPerformed);ln.setonClickListener(actionPerformed);sqrt.setonClickListener(actionPerformed);square.setonClickListener(actionPerformed);factorial.setonClickListener(actionPerformed);bksp.setonClickListener(actionPerformed);left.setonClickListener(actionPerformed);right.setonClickListener(actionPerformed);dot.setonClickListener(actionPerformed);exit.setonClickListener(actionPerformed);drg.setonClickListener(actionPerformed);mc.setonClickListener(actionPerformed);c.setonClickListener(actionPerformed);}/*** 键盘命令捕捉*/String[] TipCommand = new String[500];int tip_i = 0;// TipCommand的指针private OnClickListener actionPerformed = new OnClickListener() {public voID onClick(VIEw v) {// 按键上的命令获取String command = ((button) v).getText().toString();// 显示器上的字符串String str = input.getText().toString();// 检测输入是否合法if (equals_flag == false&& "0123456789.()sincostanlnlogn!+-×÷√^".indexOf(command) != -1) {// 检测显示器上的字符串是否合法if (right(str)) {if ("+-×÷√^)".indexOf(command) != -1) {for (int i = 0; i < str.length(); i++) {TipCommand[tip_i] = String.valueOf(str.charat(i));tip_i++;}vbegin = false;}} else {input.setText("0");vbegin = true;tip_i = 0;tip_lock = true;tip.setText("welcome use the APP!");}equals_flag = true;}if (tip_i > 0)TipChecker(TipCommand[tip_i - 1],command);else if (tip_i == 0) {TipChecker("#",command);}if ("0123456789.()sincostanlnlogn!+-×÷√^".indexOf(command) != -1&& tip_lock) {TipCommand[tip_i] = command;tip_i++;}// 若输入正确,则将输入信息显示到显示器上if ("0123456789.()sincostanlnlogn!+-×÷√^".indexOf(command) != -1&& tip_lock) { // 共25个按键print(command);// 若果点击了“DRG”,则切换当前弧度角度制,并将切换后的结果显示到按键上方。} else if (command.compareto("DRG") == 0 && tip_lock) {if (drg_flag == true) {drg_flag = false;_drg.setText(" RAD");} else {drg_flag = true;_drg.setText(" DEG");}// 如果输入时退格键,并且是在按=之前} else if (command.compareto("Bksp") == 0 && equals_flag) {// 一次删除3个字符if (TTO(str) == 3) {if (str.length() > 3)input.setText(str.substring(0,str.length() - 3));else if (str.length() == 3) {input.setText("0");vbegin = true;tip_i = 0;tip.setText("welcome use the APP!");}// 依次删除2个字符} else if (TTO(str) == 2) {if (str.length() > 2)input.setText(str.substring(0,str.length() - 2));else if (str.length() == 2) {input.setText("0");vbegin = true;tip_i = 0;tip.setText("welcome use the APP!");}// 依次删除一个字符} else if (TTO(str) == 1) {// 若之前输入的字符串合法则删除一个字符if (right(str)) {if (str.length() > 1)input.setText(str.substring(0,str.length() - 1));else if (str.length() == 1) {input.setText("0");vbegin = true;tip_i = 0;tip.setText("welcome use the APP!");}// 若之前输入的字符串不合法则删除全部字符} else {input.setText("0");vbegin = true;tip_i = 0;tip.setText("welcome use the APP!");}}if (input.getText().toString().compareto("-") == 0|| equals_flag == false) {input.setText("0");vbegin = true;tip_i = 0;tip.setText("welcome use the APP!");}tip_lock = true;if (tip_i > 0)tip_i--;// 如果是在按=之后输入退格键} else if (command.compareto("Bksp") == 0 && equals_flag == false) {// 将显示器内容设置为0input.setText("0");vbegin = true;tip_i = 0;tip_lock = true;tip.setText("welcome use the APP!");// 如果输入的是清除键} else if (command.compareto("C") == 0) {// 将显示器内容设置为0input.setText("0");// 重新输入标志置为truevbegin = true;// 缓存命令位数清0tip_i = 0;// 表明可以继续输入tip_lock = true;// 表明输入=之前equals_flag = true;tip.setText("welcome use the APP!");// 如果输入的是”MC“,则将存储器内容清0} else if (command.compareto("MC") == 0) {mem.setText("0");// 如果按”exit“则退出程序} else if (command.compareto("exit") == 0) {System.exit(0);// 如果输入的是=号,并且输入合法} else if (command.compareto("=") == 0 && tip_lock && right(str)&& equals_flag) {tip_i = 0;// 表明不可以继续输入tip_lock = false;// 表明输入=之后equals_flag = false;// 保存原来算式样子str_old = str;// 替换算式中的运算符,便于计算str = str.replaceAll("sin","s");str = str.replaceAll("cos","c");str = str.replaceAll("tan","t");str = str.replaceAll("log","g");str = str.replaceAll("ln","l");str = str.replaceAll("n!","!");// 重新输入标志设置truevbegin = true;// 将-1x转换成-str_new = str.replaceAll("-","-1×");// 计算算式结果new calc().process(str_new);}// 表明可以继续输入tip_lock = true;}};/** 检测函数,对str进行前后语法检测 为Tip的提示方式提供依据,与TipShow()配合使用 编号 字符 其后可以跟随的合法字符 1 (* 数字|(|-|.|函数 2 ) 算符|)|√ ^ 3 . 数字|算符|)|√ ^ 4 数字 .|数字|算符|)|√ ^ 5 算符* 数字|(|.|函数 6 √ ^ ( |. | 数字 7 函数 数字|(|.** 小数点前后均可省略,表示0 数字第一位可以为0*/private voID TipChecker(String tipcommand1,String tipcommand2) {// Tipcode1表示错误类型,Tipcode2表示名词解释类型int Tipcode1 = 0,Tipcode2 = 0;// 表示命令类型int tiptype1 = 0,tiptype2 = 0;// 括号数int bracket = 0;// “+-x÷√^”不能作为第一位if (tipcommand1.compareto("#") == 0&& (tipcommand2.compareto("÷") == 0|| tipcommand2.compareto("×") == 0|| tipcommand2.compareto("+") == 0|| tipcommand2.compareto(")") == 0|| tipcommand2.compareto("√") == 0 || tipcommand2.compareto("^") == 0)) {Tipcode1 = -1;}// 定义存储字符串中最后一位的类型else if (tipcommand1.compareto("#") != 0) {if (tipcommand1.compareto("(") == 0) {tiptype1 = 1;} else if (tipcommand1.compareto(")") == 0) {tiptype1 = 2;} else if (tipcommand1.compareto(".") == 0) {tiptype1 = 3;} else if ("0123456789".indexOf(tipcommand1) != -1) {tiptype1 = 4;} else if ("+-×÷".indexOf(tipcommand1) != -1) {tiptype1 = 5;} else if ("√^".indexOf(tipcommand1) != -1) {tiptype1 = 6;} else if ("sincostanloglnn!".indexOf(tipcommand1) != -1) {tiptype1 = 7;}// 定义欲输入的按键类型if (tipcommand2.compareto("(") == 0) {tiptype2 = 1;} else if (tipcommand2.compareto(")") == 0) {tiptype2 = 2;} else if (tipcommand2.compareto(".") == 0) {tiptype2 = 3;} else if ("0123456789".indexOf(tipcommand2) != -1) {tiptype2 = 4;} else if ("+-×÷".indexOf(tipcommand2) != -1) {tiptype2 = 5;} else if ("√^".indexOf(tipcommand2) != -1) {tiptype2 = 6;} else if ("sincostanloglnn!".indexOf(tipcommand2) != -1) {tiptype2 = 7;}switch (tiptype1) {case 1:// 左括号后面直接接右括号,“+x÷”(负号“-”不算),或者"√^"if (tiptype2 == 2|| (tiptype2 == 5 && tipcommand2.compareto("-") != 0)|| tiptype2 == 6)Tipcode1 = 1;break;case 2:// 右括号后面接左括号,数字,“+-x÷sin^...”if (tiptype2 == 1 || tiptype2 == 3 || tiptype2 == 4|| tiptype2 == 7)Tipcode1 = 2;break;case 3:// “.”后面接左括号或者“sincos...”if (tiptype2 == 1 || tiptype2 == 7)Tipcode1 = 3;// 连续输入两个“.”if (tiptype2 == 3)Tipcode1 = 8;break;case 4:// 数字后面直接接左括号或者“sincos...”if (tiptype2 == 1 || tiptype2 == 7)Tipcode1 = 4;break;case 5:// “+-x÷”后面直接接右括号,“+-x÷√^”if (tiptype2 == 2 || tiptype2 == 5 || tiptype2 == 6)Tipcode1 = 5;break;case 6:// “√^”后面直接接右括号,“+-x÷√^”以及“sincos...”if (tiptype2 == 2 || tiptype2 == 5 || tiptype2 == 6|| tiptype2 == 7)Tipcode1 = 6;break;case 7:// “sincos...”后面直接接右括号“+-x÷√^”以及“sincos...”if (tiptype2 == 2 || tiptype2 == 5 || tiptype2 == 6|| tiptype2 == 7)Tipcode1 = 7;break;}}// 检测小数点的重复性,Tipconde1=0,表明满足前面的规则if (Tipcode1 == 0 && tipcommand2.compareto(".") == 0) {int tip_point = 0;for (int i = 0; i < tip_i; i++) {// 若之前出现一个小数点点,则小数点计数加1if (TipCommand[i].compareto(".") == 0) {tip_point++;}// 若出现以下几个运算符之一,小数点计数清零if (TipCommand[i].compareto("sin") == 0|| TipCommand[i].compareto("cos") == 0|| TipCommand[i].compareto("tan") == 0|| TipCommand[i].compareto("log") == 0|| TipCommand[i].compareto("ln") == 0|| TipCommand[i].compareto("n!") == 0|| TipCommand[i].compareto("√") == 0|| TipCommand[i].compareto("^") == 0|| TipCommand[i].compareto("÷") == 0|| TipCommand[i].compareto("×") == 0|| TipCommand[i].compareto("-") == 0|| TipCommand[i].compareto("+") == 0|| TipCommand[i].compareto("(") == 0|| TipCommand[i].compareto(")") == 0) {tip_point = 0;}}tip_point++;// 若小数点计数大于1,表明小数点重复了if (tip_point > 1) {Tipcode1 = 8;}}// 检测右括号是否匹配if (Tipcode1 == 0 && tipcommand2.compareto(")") == 0) {int tip_right_bracket = 0;for (int i = 0; i < tip_i; i++) {// 如果出现一个左括号,则计数加1if (TipCommand[i].compareto("(") == 0) {tip_right_bracket++;}// 如果出现一个右括号,则计数减1if (TipCommand[i].compareto(")") == 0) {tip_right_bracket--;}}// 如果右括号计数=0,表明没有响应的左括号与当前右括号匹配if (tip_right_bracket == 0) {Tipcode1 = 10;}}// 检查输入=的合法性if (Tipcode1 == 0 && tipcommand2.compareto("=") == 0) {// 括号匹配数int tip_bracket = 0;for (int i = 0; i < tip_i; i++) {if (TipCommand[i].compareto("(") == 0) {tip_bracket++;}if (TipCommand[i].compareto(")") == 0) {tip_bracket--;}}// 若大于0,表明左括号还有未匹配的if (tip_bracket > 0) {Tipcode1 = 9;bracket = tip_bracket;} else if (tip_bracket == 0) {// 若前一个字符是以下之一,表明=号不合法if ("√^sincostanloglnn!".indexOf(tipcommand1) != -1) {Tipcode1 = 6;}// 若前一个字符是以下之一,表明=号不合法if ("+-×÷".indexOf(tipcommand1) != -1) {Tipcode1 = 5;}}}// 若命令式以下之一,则显示相应的帮助信息if (tipcommand2.compareto("MC") == 0)Tipcode2 = 1;if (tipcommand2.compareto("C") == 0)Tipcode2 = 2;if (tipcommand2.compareto("DRG") == 0)Tipcode2 = 3;if (tipcommand2.compareto("Bksp") == 0)Tipcode2 = 4;if (tipcommand2.compareto("sin") == 0)Tipcode2 = 5;if (tipcommand2.compareto("cos") == 0)Tipcode2 = 6;if (tipcommand2.compareto("tan") == 0)Tipcode2 = 7;if (tipcommand2.compareto("log") == 0)Tipcode2 = 8;if (tipcommand2.compareto("ln") == 0)Tipcode2 = 9;if (tipcommand2.compareto("n!") == 0)Tipcode2 = 10;if (tipcommand2.compareto("√") == 0)Tipcode2 = 11;if (tipcommand2.compareto("^") == 0)Tipcode2 = 12;// 显示帮助和错误信息TipShow(bracket,Tipcode1,Tipcode2,tipcommand1,tipcommand2);}/** 反馈Tip信息,加强人机交互,与TipChecker()配合使用*/private voID TipShow(int bracket,int tipcode1,int tipcode2,String tipcommand1,String tipcommand2) {String tipmessage = "";if (tipcode1 != 0)tip_lock = false;// 表明输入有误switch (tipcode1) {case -1:tipmessage = tipcommand2 + " 不能作为第一个算符\n";break;case 1:tipmessage = tipcommand1 + " 后应输入:数字/(/./-/函数 \n";break;case 2:tipmessage = tipcommand1 + " 后应输入:)/算符 \n";break;case 3:tipmessage = tipcommand1 + " 后应输入:)/数字/算符 \n";break;case 4:tipmessage = tipcommand1 + " 后应输入:)/./数字 /算符 \n";break;case 5:tipmessage = tipcommand1 + " 后应输入:(/./数字/函数 \n";break;case 6:tipmessage = tipcommand1 + " 后应输入:(/./数字 \n";break;case 7:tipmessage = tipcommand1 + " 后应输入:(/./数字 \n";break;case 8:tipmessage = "小数点重复\n";break;case 9:tipmessage = "不能计算,缺少 " + bracket + " 个 )";break;case 10:tipmessage = "不需要 )";break;}switch (tipcode2) {case 1:tipmessage = tipmessage + "[MC 用法: 清除记忆 MEM]";break;case 2:tipmessage = tipmessage + "[C 用法: 归零]";break;case 3:tipmessage = tipmessage + "[DRG 用法: 选择 DEG 或 RAD]";break;case 4:tipmessage = tipmessage + "[Bksp 用法: 退格]";break;case 5:tipmessage = tipmessage + "sin 函数用法示例:\n"+ "DEG:sin30 = 0.5 RAD:sin1 = 0.84\n"+ "注:与其他函数一起使用时要加括号,如:\n" + "sin(cos45),而不是sincos45";break;case 6:tipmessage = tipmessage + "cos 函数用法示例:\n"+ "DEG:cos60 = 0.5 RAD:cos1 = 0.54\n"+ "注:与其他函数一起使用时要加括号,如:\n" + "cos(sin45),而不是cossin45";break;case 7:tipmessage = tipmessage + "tan 函数用法示例:\n"+ "DEG:tan45 = 1 RAD:tan1 = 1.55\n"+ "注:与其他函数一起使用时要加括号,如:\n" + "tan(cos45),而不是tancos45";break;case 8:tipmessage = tipmessage + "log 函数用法示例:\n"+ "log10 = log(5+5) = 1\n" + "注:与其他函数一起使用时要加括号,如:\n"+ "log(tan45),而不是logtan45";break;case 9:tipmessage = tipmessage + "ln 函数用法示例:\n"+ "ln10 = le(5+5) = 2.3 lne = 1\n"+ "注:与其他函数一起使用时要加括号,如:\n" + "ln(tan45),而不是lntan45";break;case 10:tipmessage = tipmessage + "n! 函数用法示例:\n"+ "n!3 = n!(1+2) = 3×2×1 = 6\n" + "注:与其他函数一起使用时要加括号,如:\n"+ "n!(log1000),而不是n!log1000";break;case 11:tipmessage = tipmessage + "√ 用法示例:开任意次根号\n"+ "如:27开3次根为 27√3 = 3\n" + "注:与其他函数一起使用时要加括号,如:\n"+ "(函数)√(函数) , (n!3)√(log100) = 2.45";break;case 12:tipmessage = tipmessage + "^ 用法示例:开任意次平方\n" + "如:2的3次方为 2^3 = 8\n"+ "注:与其他函数一起使用时要加括号,如:\n"+ "(函数)√(函数) , (n!3)^(log100) = 36";break;}// 将提示信息显示到tiptip.setText(tipmessage);}/*** 将信息显示在显示屏上*/private voID print(String str) {// 清屏后输出if (vbegin) {input.setText(str);} else {input.append(str);}vbegin = false;}/** 检测函数,返回值为3、2、1 表示应当一次删除几个? Three+Two+One = TTO 为Bksp按钮的删除方式提供依据* 返回3,表示str尾部为sin、cos、tan、log中的一个,应当一次删除3个 返回2,表示str尾部为ln、n!中的一个,应当一次删除2个* 返回1,表示为除返回3、2外的所有情况,只需删除一个(包含非法字符时要另外考虑:应清屏)*/private int TTO(String str) {if ((str.charat(str.length() - 1) == 'n'&& str.charat(str.length() - 2) == 'i' && str.charat(str.length() - 3) == 's')|| (str.charat(str.length() - 1) == 's'&& str.charat(str.length() - 2) == 'o' && str.charat(str.length() - 3) == 'c')|| (str.charat(str.length() - 1) == 'n'&& str.charat(str.length() - 2) == 'a' && str.charat(str.length() - 3) == 't')|| (str.charat(str.length() - 1) == 'g'&& str.charat(str.length() - 2) == 'o' && str.charat(str.length() - 3) == 'l')) {return 3;} else if ((str.charat(str.length() - 1) == 'n' && str.charat(str.length() - 2) == 'l')|| (str.charat(str.length() - 1) == '!' && str.charat(str.length() - 2) == 'n')) {return 2;} else {return 1;}}/** 判断一个str是否是合法的,返回值为true、false* 只包含0123456789.()sincostanlnlogn!+-×÷√^的是合法的str,返回true* 包含了除0123456789.()sincostanlnlogn!+-×÷√^以外的字符的str为非法的,返回false*/private boolean right(String str) {int i = 0;for (i = 0; i < str.length(); i++) {if (str.charat(i) != '0' && str.charat(i) != '1'&& str.charat(i) != '2' && str.charat(i) != '3'&& str.charat(i) != '4' && str.charat(i) != '5'&& str.charat(i) != '6' && str.charat(i) != '7'&& str.charat(i) != '8' && str.charat(i) != '9'&& str.charat(i) != '.' && str.charat(i) != '-'&& str.charat(i) != '+' && str.charat(i) != '×'&& str.charat(i) != '÷' && str.charat(i) != '√'&& str.charat(i) != '^' && str.charat(i) != 's'&& str.charat(i) != 'i' && str.charat(i) != 'n'&& str.charat(i) != 'c' && str.charat(i) != 'o'&& str.charat(i) != 't' && str.charat(i) != 'a'&& str.charat(i) != 'l' && str.charat(i) != 'g'&& str.charat(i) != '(' && str.charat(i) != ')'&& str.charat(i) != '!')break;}if (i == str.length()) {return true;} else {return false;}}/** 整个计算核心,* 只要将表达式的整个字符串传入calc().process()就可以实行计算了 算法包括以下几部分:* 1、计算部分* process(String str) 当然,这是建立在查错无错误的情况下* 2、数据格式化 FP(double n) 使数据有相当的精确度* 3、阶乘算法 N(double n) 计算n!,将结果返回* 4、错误提示 showError(int code,String str)* 将错误返回*/public class calc {public calc() {}final int MAXLEN = 500;/** 计算表达式 从左向右扫描,数字入number栈,运算符入operator栈* +-基本优先级为1,* ×÷基本优先级为2,* log ln sin cos tan n!基本优先级为3,* √^基本优先级为4* 括号内层运算符比外层同级运算符优先级高4* 当前运算符优先级高于栈顶压栈,* 低于栈顶d出一个运算符与两个数进行运算* 重复直到当前运算符大于栈顶* 扫描完后对剩下的运算符与数字依次计算*/public voID process(String str) {int weightPlus = 0,topOp = 0,topNum = 0,flag = 1,weightTemp = 0;// weightPlus为同一()下的基本优先级,weightTemp临时记录优先级的变化// topOp为weight[],operator[]的计数器;topNum为number[]的计数器// flag为正负数的计数器,1为正数,-1为负数int weight[]; // 保存operator栈中运算符的优先级,以topOp计数double number[]; // 保存数字,以topNum计数char ch,ch_gai,operator[];// operator[]保存运算符,以topOp计数String num;// 记录数字,str以+-×÷()sctgl!√^分段,+-×÷()sctgl!√^字符之间的字符串即为数字weight = new int[MAXLEN];number = new double[MAXLEN];operator = new char[MAXLEN];String Expression = str;StringTokenizer expToken = new StringTokenizer(Expression,"+-×÷()sctgl!√^");int i = 0;while (i < Expression.length()) {ch = Expression.charat(i);// 判断正负数if (i == 0) {if (ch == '-')flag = -1;} else if (Expression.charat(i - 1) == '(' && ch == '-')flag = -1;// 取得数字,并将正负符号转移给数字if (ch <= '9' && ch >= '0' || ch == '.' || ch == 'E') {num = expToken.nextToken();ch_gai = ch;Log.e("guoJs",ch + "--->" + i);// 取得整个数字while (i < Expression.length()&& (ch_gai <= '9' && ch_gai >= '0' || ch_gai == '.' || ch_gai == 'E')) {ch_gai = Expression.charat(i++);Log.e("guoJs","i的值为:" + i);}// 将指针退回之前的位置if (i >= Expression.length())i -= 1;else {i -= 2;}if (num.compareto(".") == 0)number[topNum++] = 0;// 将正负符号转移给数字else {number[topNum++] = Double.parseDouble(num) * flag;flag = 1;}}// 计算运算符的优先级if (ch == '(')weightPlus += 4;if (ch == ')')weightPlus -= 4;if (ch == '-' && flag == 1 || ch == '+' || ch == '×'|| ch == '÷' || ch == 's' || ch == 'c' || ch == 't'|| ch == 'g' || ch == 'l' || ch == '!' || ch == '√'|| ch == '^') {switch (ch) {// +-的优先级最低,为1case '+':case '-':weightTemp = 1 + weightPlus;break;// x÷的优先级稍高,为2case '×':case '÷':weightTemp = 2 + weightPlus;break;// sincos之类优先级为3case 's':case 'c':case 't':case 'g':case 'l':case '!':weightTemp = 3 + weightPlus;break;// 其余优先级为4// case '^':// case '√':default:weightTemp = 4 + weightPlus;break;}// 如果当前优先级大于堆栈顶部元素,则直接入栈if (topOp == 0 || weight[topOp - 1] < weightTemp) {weight[topOp] = weightTemp;operator[topOp] = ch;topOp++;// 否则将堆栈中运算符逐个取出,直到当前堆栈顶部运算符的优先级小于当前运算符} else {while (topOp > 0 && weight[topOp - 1] >= weightTemp) {switch (operator[topOp - 1]) {// 取出数字数组的相应元素进行运算case '+':number[topNum - 2] += number[topNum - 1];break;case '-':number[topNum - 2] -= number[topNum - 1];break;case '×':number[topNum - 2] *= number[topNum - 1];break;// 判断除数为0的情况case '÷':if (number[topNum - 1] == 0) {showError(1,str_old);return;}number[topNum - 2] /= number[topNum - 1];break;case '√':if (number[topNum - 1] == 0|| (number[topNum - 2] < 0 && number[topNum - 1] % 2 == 0)) {showError(2,str_old);return;}number[topNum - 2] = Math.pow(number[topNum - 2],1 / number[topNum - 1]);break;case '^':number[topNum - 2] = Math.pow(number[topNum - 2],number[topNum - 1]);break;// 计算时进行角度弧度的判断及转换// sincase 's':if (drg_flag == true) {number[topNum - 1] = Math.sin((number[topNum - 1] / 180)* pi);} else {number[topNum - 1] = Math.sin(number[topNum - 1]);}topNum++;break;// coscase 'c':if (drg_flag == true) {number[topNum - 1] = Math.cos((number[topNum - 1] / 180)* pi);} else {number[topNum - 1] = Math.cos(number[topNum - 1]);}topNum++;break;// tancase 't':if (drg_flag == true) {if ((Math.abs(number[topNum - 1]) / 90) % 2 == 1) {showError(2,str_old);return;}number[topNum - 1] = Math.tan((number[topNum - 1] / 180)* pi);} else {if ((Math.abs(number[topNum - 1]) / (pi / 2)) % 2 == 1) {showError(2,str_old);return;}number[topNum - 1] = Math.tan(number[topNum - 1]);}topNum++;break;// logcase 'g':if (number[topNum - 1] <= 0) {showError(2,str_old);return;}number[topNum - 1] = Math.log10(number[topNum - 1]);topNum++;break;// lncase 'l':if (number[topNum - 1] <= 0) {showError(2,str_old);return;}number[topNum - 1] = Math.log(number[topNum - 1]);topNum++;break;// 阶乘case '!':if (number[topNum - 1] > 170) {showError(3,str_old);return;} else if (number[topNum - 1] < 0) {showError(2,str_old);return;}number[topNum - 1] = N(number[topNum - 1]);topNum++;break;}// 继续取堆栈的下一个元素进行判断topNum--;topOp--;}// 将运算符如堆栈weight[topOp] = weightTemp;operator[topOp] = ch;topOp++;}}i++;}// 依次取出堆栈的运算符进行运算while (topOp > 0) {// +-x直接将数组的后两位数取出运算switch (operator[topOp - 1]) {case '+':number[topNum - 2] += number[topNum - 1];break;case '-':number[topNum - 2] -= number[topNum - 1];break;case '×':number[topNum - 2] *= number[topNum - 1];break;// 涉及到除法时要考虑除数不能为零的情况case '÷':if (number[topNum - 1] == 0) {showError(1,str_old);return;}number[topNum - 2] = Math.pow(number[topNum - 2],1 / number[topNum - 1]);break;case '^':number[topNum - 2] = Math.pow(number[topNum - 2],number[topNum - 1]);break;// sincase 's':if (drg_flag == true) {number[topNum - 1] = Math.sin((number[topNum - 1] / 180) * pi);} else {number[topNum - 1] = Math.sin(number[topNum - 1]);}topNum++;break;// coscase 'c':if (drg_flag == true) {number[topNum - 1] = Math.cos((number[topNum - 1] / 180) * pi);} else {number[topNum - 1] = Math.cos(number[topNum - 1]);}topNum++;break;// tancase 't':if (drg_flag == true) {if ((Math.abs(number[topNum - 1]) / 90) % 2 == 1) {showError(2,str_old);return;}number[topNum - 1] = Math.tan((number[topNum - 1] / 180) * pi);} else {if ((Math.abs(number[topNum - 1]) / (pi / 2)) % 2 == 1) {showError(2,str_old);return;}number[topNum - 1] = Math.tan(number[topNum - 1]);}topNum++;break;// 对数logcase 'g':if (number[topNum - 1] <= 0) {showError(2,str_old);return;}number[topNum - 1] = Math.log10(number[topNum - 1]);topNum++;break;// 自然对数lncase 'l':if (number[topNum - 1] <= 0) {showError(2,str_old);return;}number[topNum - 1] = Math.log(number[topNum - 1]);topNum++;break;// 阶乘case '!':if (number[topNum - 1] > 170) {showError(3,str_old);return;}number[topNum - 1] = N(number[topNum - 1]);topNum++;break;}// 取堆栈下一个元素计算topNum--;topOp--;}// 如果是数字太大,提示错误信息if (number[0] > 7.3E306) {showError(3,str_old);return;}// 输出最终结果input.setText(String.valueOf(FP(number[0])));tip.setText("计算完毕,要继续请按归零键 C");mem.setText(str_old + "=" + String.valueOf(FP(number[0])));}/** FP = floating point 控制小数位数,达到精度 否则会出现* 0.6-0.2=0.39999999999999997的情况,用FP即可解决,使得数为0.4 本格式精度为15位*/public double FP(double n) {// NumberFormat format=NumberFormat.getInstance(); //创建一个格式化类f// format.setMaximumFractionDigits(18); //设置小数位的格式DecimalFormat format = new DecimalFormat("0.#############");return Double.parseDouble(format.format(n));}/** 阶乘算法*/public double N(double n) {int i = 0;double sum = 1;// 依次将小于等于n的值相乘for (i = 1; i <= n; i++) {sum = sum * i;}return sum;}/** 错误提示,按了"="之后,若计算式在process()过程中,出现错误,则进行提示*/public voID showError(int code,String str) {String message = "";switch (code) {case 1:message = "零不能作除数";break;case 2:message = "函数格式错误";break;case 3:message = "值太大了,超出范围";}input.setText("\"" + str + "\"" + ": " + message);tip.setText(message + "\n" + "计算完毕,要继续请按归零键 C");}}}

菜单menu_main.xml

<menu xmlns:androID="http://schemas.androID.com/apk/res/androID" ><itemandroID:ID="@+ID/action_settings"androID:orderIncategory="100"androID:showAsAction="never"androID:title="@string/action_settings"/></menu>

以上代码是小编给大家介绍的Java实现Andriod带看括弧计算器代码,代码有哪里写的不好,还请各位大侠多多提出宝贵意见,小编会及时和大家取得联系的。同时也非常感谢大家一直以来对编程小技巧网站的支持。

总结

以上是内存溢出为你收集整理的Java实现Andriod带看括弧的计算器代码全部内容,希望文章能够帮你解决Java实现Andriod带看括弧的计算器代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1149575.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存