Here you can find the source of sumArray(int Array[])
public static int sumArray(int Array[])
//package com.java2s; public class Main { public static int sumArray(int Array[]) { int SumArray = 0; for (int i = Array.length; --i >= 0;) SumArray += Array[i]; return SumArray; }/* ww w.j a v a 2 s. c o m*/ }