java如何定义一个方法,能计算两个整数的加减乘除,并把4个计算结果保存起来

2025年01月05日 11:37
有3个网友回答
网友(1):

public class Util {

public static void main(String[] args) {

int[] result = calculate(3, 5);
System.out.println("3+5 = " + result[0]);
System.out.println("3-5 = " + result[1]);
System.out.println("3*5 = " + result[2]);
System.out.println("3/5 = " + result[3]);

}

public static int[] calculate(int a, int b){
int sum = a+b;
int sub = a- b;
int mul = a * b;
int div = (b == 0? 0: a/b);

int[] result = {sum, sub, mul, div};

return result;
}
}

-----------------testing
3+5 = 8
3-5 = -2
3*5 = 15
3/5 = 0

网友(2):

这个很简单的啊
你需要定义两个变量 代表两个整数
一个变量代表结果
然后结果=两个整数间的运算
输出结果的值 你要的是这个效果么

网友(3):

你想保存到哪 数据库还是FILE里