21xrx.com
2024-12-23 00:06:18 Monday
登录
文章检索 我的文章 写文章
使用Java实现简单的计算器
2023-06-15 14:10:00 深夜i     --     --
Java 计算器 基本运算

在日常生活中,我们经常需要进行简单的数学计算,比如加减乘除等基本运算。而Java作为一门面向对象的编程语言,也可以轻松实现一个简单的计算器。

我们只需要创建一个Calculator类,在其中编写各种基本运算的方法,再在主程序中调用这些方法即可完成计算。下面是一个示例代码:


public class Calculator {

  public static int add(int x, int y) {

    return x + y;

  }

  public static int subtract(int x, int y)

    return x - y;

  

  public static int multiply(int x, int y) {

    return x * y;

  }

  public static int divide(int x, int y) {

    if (y == 0) {

      throw new IllegalArgumentException("除数不能为0");

    }

    return x / y;

  }

}

public class Main {

  public static void main(String[] args) {

    int a = 10;

    int b = 5;

    System.out.println("a + b = " + Calculator.add(a, b));

    System.out.println("a - b = " + Calculator.subtract(a, b));

    System.out.println("a * b = " + Calculator.multiply(a, b));

    System.out.println("a / b = " + Calculator.divide(a, b));

  }

}

上面的代码中,我们定义了一个Calculator类,其中包含了四个计算方法:add()、subtract()、multiply()和divide()。在主程序中,我们通过调用这些方法来进行相应的计算,并将结果输出到控制台上。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复