-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainActivity.java
525 lines (486 loc) · 19.6 KB
/
MainActivity.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
package com.example.myapplication;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import java.util.Stack;
import java.math.BigDecimal;
import java.lang.Math;
//直接让当前类实现OnClickListener接口
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
Button btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6, //各个按钮
btn_7,btn_8,btn_9,btn_clear,btn_percent,
btn_del,btn_leftbra,btn_rightbra,btn_PandM,
btn_squ2,btn_sin,btn_cos,btn_tan,btn_div,btn_mul,
btn_sub,btn_add,btn_equ,btn_p;
EditText text;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取界面元素,引用xml中的id,让Java中的按钮和xml中的保持一致,设置事件处理的监听器
btn_0 = (Button) findViewById(R.id.btn_0);
btn_0.setOnClickListener(this);
btn_1 = (Button) findViewById(R.id.btn_1);
btn_1.setOnClickListener(this);
btn_2 = (Button) findViewById(R.id.btn_2);
btn_2.setOnClickListener(this);
btn_3 = (Button) findViewById(R.id.btn_3);
btn_3.setOnClickListener(this);
btn_4 = (Button) findViewById(R.id.btn_4);
btn_4.setOnClickListener(this);
btn_5 = (Button) findViewById(R.id.btn_5);
btn_5.setOnClickListener(this);
btn_6 = (Button) findViewById(R.id.btn_6);
btn_6.setOnClickListener(this);
btn_7 = (Button) findViewById(R.id.btn_7);
btn_7.setOnClickListener(this);
btn_8 = (Button) findViewById(R.id.btn_8);
btn_8.setOnClickListener(this);
btn_9 = (Button) findViewById(R.id.btn_9);
btn_9.setOnClickListener(this);
btn_clear = (Button) findViewById(R.id.btn_clear);
btn_clear.setOnClickListener(this);
btn_percent = (Button) findViewById(R.id.btn_percent);
btn_percent.setOnClickListener(this);
btn_del = (Button) findViewById(R.id.btn_del);
btn_del.setOnClickListener(this);
btn_leftbra = (Button) findViewById(R.id.btn_leftbra);
btn_leftbra.setOnClickListener(this);
btn_rightbra = (Button) findViewById(R.id.btn_rightbra);
btn_rightbra.setOnClickListener(this);
btn_PandM = (Button) findViewById(R.id.btn_PandM);
btn_PandM.setOnClickListener(this);
btn_squ2 = (Button) findViewById(R.id.btn_squ2);
btn_squ2.setOnClickListener(this);
btn_sin = (Button) findViewById(R.id.btn_sin);
btn_sin.setOnClickListener(this);
btn_cos = (Button) findViewById(R.id.btn_cos);
btn_cos.setOnClickListener(this);
btn_cos = (Button) findViewById(R.id.btn_tan);
btn_cos.setOnClickListener(this);
btn_div = (Button) findViewById(R.id.btn_div);
btn_div.setOnClickListener(this);
btn_mul = (Button) findViewById(R.id.btn_mul);
btn_mul.setOnClickListener(this);
btn_sub = (Button) findViewById(R.id.btn_sub);
btn_sub.setOnClickListener(this);
btn_add = (Button) findViewById(R.id.btn_add);
btn_add.setOnClickListener(this);
btn_equ = (Button) findViewById(R.id.btn_equ);
btn_equ.setOnClickListener(this);
btn_p = (Button) findViewById(R.id.btn_p);
btn_p.setOnClickListener(this);
text=(EditText) findViewById(R.id.text);
}
@Override
// 事件的处理函数
public void onClick(View v) {
// 不知道text是什么类,获取这个控件,或者是输入的字符串
String str = text.getText().toString();
// 分支选择语句
switch(v.getId()){
// 退格键
case R.id.btn_del:
if(str.length()>1){
str=str.substring(0,str.length()-1);
}
else{
str="0";
}
text.setText(str);
break;
// 清除键
case R.id.btn_clear:
str="0";
text.setText(str);
break;
// 如果初始值为0,就变成相应的数字,如果不为0,就在后面加数
case R.id.btn_0:
if (str.equals("0")){
str="0";
}
else{
str+="0";
}
text.setText(str);
break;
case R.id.btn_1:
if (str.equals("0")){
str="1";
}
else{
str+="1";
}
text.setText(str);
break;
case R.id.btn_2:
if (str.equals("0")){
str="2";
}
else{
str+="2";
}
text.setText(str);
break;
case R.id.btn_3:
if (str.equals("0")){
str="3";
}
else{
str+="3";
}
text.setText(str);
break;
case R.id.btn_4:
if (str.equals("0")){
str="4";
}
else{
str+="4";
}
text.setText(str);
break;
case R.id.btn_5:
if (str.equals("0")){
str="5";
}
else{
str+="5";
}
text.setText(str);
break;
case R.id.btn_6:
if (str.equals("0")){
str="6";
}
else{
str+="6";
}
text.setText(str);
break;
case R.id.btn_7:
if (str.equals("0")){
str="7";
}
else{
str+="7";
}
text.setText(str);
break;
case R.id.btn_8:
if (str.equals("0")){
str="8";
}
else{
str+="8";
}
text.setText(str);
break;
case R.id.btn_9:
if (str.equals("0")){
str="9";
}
else{
str+="9";
}
text.setText(str);
break;
// Toast提供一种提醒方式
// +-*÷.这些符号不能挨着,否则显示输入错误
case R.id.btn_p:
if(str.charAt(str.length()-1)=='+'||str.charAt(str.length()-1)=='-'||str.charAt(str.length()-1)=='×'||str.charAt(str.length()-1)=='÷'||str.charAt(str.length()-1)=='.'){
Toast.makeText(MainActivity.this,"输入错误!",Toast.LENGTH_SHORT).show();
text.setText(str);
}
else{
str+=".";
text.setText(str);
}
break;
case R.id.btn_add:
if(str.charAt(str.length()-1)=='+'||str.charAt(str.length()-1)=='-'||str.charAt(str.length()-1)=='×'||str.charAt(str.length()-1)=='÷'||str.charAt(str.length()-1)=='.'){
Toast.makeText(MainActivity.this,"input error!",Toast.LENGTH_SHORT).show();
text.setText(str);
}
else{
str+="+";
text.setText(str);
}
break;
case R.id.btn_sub:
if(str.charAt(str.length()-1)=='+'||str.charAt(str.length()-1)=='-'||str.charAt(str.length()-1)=='×'||str.charAt(str.length()-1)=='÷'||str.charAt(str.length()-1)=='.'){
Toast.makeText(MainActivity.this,"input error!",Toast.LENGTH_SHORT).show();
text.setText(str);
}
else {
str += "-";
text.setText(str);
}
break;
case R.id.btn_mul:
if(str.charAt(str.length()-1)=='+'||str.charAt(str.length()-1)=='-'||str.charAt(str.length()-1)=='×'||str.charAt(str.length()-1)=='÷'||str.charAt(str.length()-1)=='.'){
Toast.makeText(MainActivity.this,"input error!",Toast.LENGTH_SHORT).show();
text.setText(str);
}
else {
str += "×";
text.setText(str);
}
break;
case R.id.btn_div:
if(str.charAt(str.length()-1)=='+'||str.charAt(str.length()-1)=='-'||str.charAt(str.length()-1)=='×'||str.charAt(str.length()-1)=='÷'||str.charAt(str.length()-1)=='.'){
Toast.makeText(MainActivity.this,"input error!",Toast.LENGTH_SHORT).show();
text.setText(str);
}
else {
str += "÷";
text.setText(str);
}
break;
// 当字符串长度为1时,输入(,当没有+-*÷时,(在数字左边,反则在后边
case R.id.btn_leftbra:
if (str.length()==1){
str="(";
}
else if(!str.contains("+")&&!str.contains("-")&&!str.contains("×")&&!str.contains("÷")){
str="("+str;
}
else {
str += "(";
}
text.setText(str);
break;
// 当字符串长度为一时不输出右括号,反之输出
case R.id.btn_rightbra:
if (str.length()==1){
str="0";
}
else {
str += ")";
}
text.setText(str);
break;
// 当最后一个字符是+-*÷时提示请写出完整的计算,一个数除0时提示0不能作为除数
case R.id.btn_equ:
if(str.charAt(str.length()-1)=='+'||str.charAt(str.length()-1)=='-'||str.charAt(str.length()-1)=='×'||str.charAt(str.length()-1)=='÷'){
Toast.makeText(MainActivity.this,"Please complete the formula!",Toast.LENGTH_SHORT).show();
text.setText(str);
}
else {
String ero = isMatched(str);
if (ero.equals("no error")) {
String re = getResult();
if (re.contains("Infinity")) {
Toast.makeText(MainActivity.this, "0 cannot be used as a divior!", Toast.LENGTH_SHORT).show();
text.setText("0");
} else {
text.setText(re);
}
} else {
Toast.makeText(MainActivity.this, ero, Toast.LENGTH_SHORT).show();
}
}
break;
// 提示负数不能开方,符号不能开方
case R.id.btn_squ2:
if(str.charAt(0)=='-'){
Toast.makeText(MainActivity.this,"Negative numbers cannot be squared!",Toast.LENGTH_SHORT).show();
text.setText("0");
}
else if(str.contains("+")||str.contains("-")||str.contains("×")||str.contains("÷")){
Toast.makeText(MainActivity.this,"Symbols cannot be squared!",Toast.LENGTH_SHORT).show();
text.setText("0");
}
else{
double x=Double.parseDouble(str);
x=Math.sqrt(x);
String x2=String.format("%.9f",x);
x2 = x2.replaceAll("0+?$", "");//去掉多余的0
x2 = x2.replaceAll("[.]$", "");//如最后一位是.则去掉
text.setText(x2);
}
break;
case R.id.btn_percent:
double per=Double.parseDouble(str);
per=per/100;
String per1=""+per;
per1 = per1.replaceAll("0+?$", "");//去掉多余的0
per1 = per1.replaceAll("[.]$", "");//如最后一位是.则去掉
text.setText(per1);
break;
case R.id.btn_sin:
double sinn=Double.parseDouble(str);
sinn=Math.toRadians(sinn);
sinn=Math.sin(sinn);
String sinn1=String.format("%.9f",sinn);//规避极小误差
sinn1 = sinn1.replaceAll("0+?$", "");//去掉多余的0
sinn1 = sinn1.replaceAll("[.]$", "");//如最后一位是.则去掉
text.setText(sinn1);
break;
case R.id.btn_cos:
double coss=Double.parseDouble(str);
coss=Math.toRadians(coss);
coss=Math.cos(coss);
String coss1=String.format("%.9f",coss);//规避极小误差
coss1 = coss1.replaceAll("0+?$", "");//去掉多余的0
coss1 = coss1.replaceAll("[.]$", "");//如最后一位是.则去掉
text.setText(coss1);
break;
case R.id.btn_tan:
double tann=Double.parseDouble(str);
tann=Math.toRadians(tann);
tann=Math.tan(tann);
String tann1=String.format("%.9f",tann);//规避极小误差
tann1 = tann1.replaceAll("0+?$", "");//去掉多余的0
tann1 = tann1.replaceAll("[.]$", "");//如最后一位是.则去掉
text.setText(tann1);
break;
// 正负
case R.id.btn_PandM:
if(str.charAt(0)>='0'&&str.charAt(0)<='9'){
if(str.equals("0")){
text.setText("0");
}
else{
text.setText("-"+str);
}
}
else if(str.charAt(0)=='-')
text.setText(str.substring(1,str.length()));
else
text.setText(str);
break;
default:
break;
}
}
//将中缀表达式转换成后缀表达式
public static StringBuffer toPostfix(String infix){
Stack<String> stack=new Stack<String>(); //运算符栈,顺序栈
StringBuffer postfix=new StringBuffer(infix.length()*2); //后缀表达式字符串
int i=0;
while(i<infix.length()){
char ch=infix.charAt(i);
switch(ch){
case '+':
case '-':
while(!stack.isEmpty()&&!stack.peek().equals("(")) //如果栈不为空且栈顶元素不是"(",则出栈
postfix.append(stack.pop()); //且添加到后缀表达式串
stack.push(ch+""); //ch入栈
i++;
break;
case '×':
case '÷':
while(!stack.isEmpty()&&(stack.peek().equals("×")||stack.peek().equals("÷"))) //如果栈顶元素不为空且栈顶元素是"*"或是"/"时,则出栈
postfix.append(stack.pop());
stack.push(ch+"");
i++;
break;
case '(':
stack.push(ch+""); //直接入栈
i++;
break;
case ')':
String out=stack.pop();
while(out!=null&&!out.equals("(")){ //如果栈顶元素不为空且不为"("时
postfix.append(out); //添加到后缀表达式串
out=stack.pop(); //把此时位于栈顶的"("弹出
}
i++;
break;
default:
while((i<infix.length()&&ch>='0'&&ch<='9')||(i<infix.length()&&ch=='.')){
postfix.append(ch); //如果是数字直接添加到后缀表达式串
i++;
if(i<infix.length())
ch=infix.charAt(i);
}
postfix.append(" ");
}
}
while(!stack.isEmpty()) //所有运算符出栈
postfix.append(stack.pop()); //添加到后缀表达式中
return postfix;
}
//计算后缀表达式
public static Double toValue(StringBuffer postfix){
Stack<Double> stack=new Stack<Double>(); //操作数栈,链式栈
double value=0;
int j=0;
for(int i=0;i<postfix.length();i++){
j=i;
char ch=postfix.charAt(i);
if ((ch>='0'&&ch<='9')||ch=='.') {
value=0;
while(ch!=' '){
while(ch!=' '&&ch!='.'){
value=value*10+ch-'0';
j++;
ch=postfix.charAt(++i);
}
if(ch!=' '&&ch=='.')
ch=postfix.charAt(++i);
while(ch!=' '&&(i>=j+1)){
BigDecimal valueBD=new BigDecimal(Double.toString(value));
BigDecimal chBD=new BigDecimal(Double.toString(ch-'0'));
BigDecimal nBD=new BigDecimal(Double.toString(Math.pow(10,i-j)));
double temp=chBD.divide(nBD).doubleValue();
BigDecimal tempBD=new BigDecimal(Double.toString(temp));
value=valueBD.add(tempBD).doubleValue();
ch=postfix.charAt(++i);
}
stack.push(value);
}
}
else{
if(ch!=' '){
Double y=stack.pop();
Double x=stack.pop();
switch(ch){
case'+':
value=x+y;
break;
case'-':
value=x-y;
break;
case'×':
value=x*y;
break;
case'÷':
value=x/y;
break;
}
stack.push(value);
}
}
}
return stack.pop();
}
public String getResult(){
String infix = text.getText().toString();
StringBuffer postfix=toPostfix(infix);
Double result=toValue(postfix);
String re=String.format("%.7f",result);//规避极小误差
re = re.replaceAll("0+?$", "");//去掉多余的0
re = re.replaceAll("[.]$", "");//如最后一位是.则去掉
return re;
}
public static String isMatched(String infix){
Stack<String> stack=new Stack<String>();
for (int i=0;i<infix.length();i++){
char ch=infix.charAt(i);
switch(ch){
case'(':
stack.push(ch+"");
break;
case')':
if(stack.isEmpty()||!stack.pop().equals("("))
return "expect (";
}
}
return(stack.isEmpty())?"no error":"expect )";
}
}