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
这个很简单的啊
你需要定义两个变量 代表两个整数
一个变量代表结果
然后结果=两个整数间的运算
输出结果的值 你要的是这个效果么
你想保存到哪 数据库还是FILE里