本文主要是介绍需求: java数组索引偶数之和,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.实现代码
/**
* 需求: 求数组索引偶数之和
*/
public class ArrayUtil {
public static void getSum(int[] arr) {
int count = 0;
for(int index = 0; index < arr.length; index++) {
// 求出索引是偶数的元素出来
if(index % 2 == 0) {
// 把求出索引是偶数的元素累计加起来
count += arr[index];
}
}
System.out.println(count);
}
public static void main(String[] args) {
// 传递一个实际数组给getSum方法
int[] arr = new int[]{20,5,8,10,90,60,80};
ArrayUtil.getSum(arr);
}
}
2.输出结果
这篇关于需求: java数组索引偶数之和的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!