Calculator.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Calculator {
  7. //加符号
  8. private final static String ADD_SYMBOL = "+";
  9. //减符号
  10. private final static String SUB_SYMBOL = "-";
  11. public int exec(int a,int b,String symbol){
  12. int result =0;
  13. if(symbol.equals(ADD_SYMBOL)){
  14. result = this.add(a, b);
  15. }else if(symbol.equals(SUB_SYMBOL)){
  16. result = this.sub(a, b);
  17. }
  18. return result;
  19. }
  20. //加法运算
  21. private int add(int a,int b){
  22. return a+b;
  23. }
  24. //减法运算
  25. private int sub(int a,int b){
  26. return a-b;
  27. }
  28. }