有没有更简单的方法可以写出此方法?如果数组包含5个以上的项目,我仍将每个变量写出该变量吗?
主要:
public int addUpNumbers(int a, int b, int c, int d, int e) {
int numbers = a + b + c + d + e;
return numbers;
测试:
public class MyArraysTest {
public static void main(String[] args) {
MyArrays myArrays = new MyArrays();
System.out.println(myArrays.addUpNumbers(10,20,30,40,50));