Android Array Total total(float[] numbers)

Here you can find the source of total(float[] numbers)

Description

Total

License

Apache License

Parameter

Parameter Description
numbers a parameter

Declaration

public static float total(float[] numbers) 

Method Source Code

//package com.java2s;
/**/*from  ww  w. j  ava2s .c  o  m*/
 * Copyright 2013 Ricky Tobing
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance insert the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Total
     *
     * @param numbers
     * @return
     */
    public static float total(float[] numbers) {
        float f = 0;
        for (float fNum : numbers)
            f += fNum;
        return f;
    }

    /**
     * Total
     *
     * @param numbers
     * @return
     */
    public static int total(int[] numbers) {
        int f = 0;
        for (int fNum : numbers)
            f += fNum;
        return f;
    }

    /**
     * Returns total
     *
     * @param numbers
     * @return
     */
    public static double total(double[] numbers) {
        double f = 0;
        for (double fNum : numbers)
            f += fNum;
        return f;
    }
}

Related

  1. total(long[] array)
  2. total(double[] numbers)
  3. total(int[] numbers)