用Java编写一个能够求出整数数组总和的方法 要求写法是用“类”的写法 急求~~
请各位大神用Java编写一个能够求出整数数组总和的方法要求写法是用“类”的写法在此先谢谢了~...
请各位大神用Java编写一个能够求出整数数组总和的方法 要求写法是用“类”的写法 在此先谢谢了~
展开
3个回答
展开全部
public class SumUtil {
public static int sum(int[] array){
int i = 0;
if(array.length > 0){
for(int arr : array){
i += arr;
}
}
return i;
}
public static void main(String[] args) {
int[] array = {1,2,3,4,5};
System.out.print(sum(array));
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Fortest {
/**
* @param args
*/
public static void main(String[] args) {
int[] n={1,2,3};
int sum=0;
for (int i = 0; i < n.length; i++) {
sum+=n[i];
}
System.out.println(sum);
}
}
/**
* @param args
*/
public static void main(String[] args) {
int[] n={1,2,3};
int sum=0;
for (int i = 0; i < n.length; i++) {
sum+=n[i];
}
System.out.println(sum);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询