“Java Sum of Array Elements” Ответ

Сумма всех чисел в массиве Java

int[] a = {10,20,30,40,50};
int sum = IntStream.of(a).sum();
System.out.println("The sum is " + sum);
Angry Antelope

Номера сумм в массиве Java

public class Exercise2 {
public static void main(String[] args) {      
int my_array[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int sum = 0;

for (int i : my_array)
    sum += i;
System.out.println("The sum is " + sum);
}
}
Biddls

Java -бегущая сумма массива

class Solution {
    public int[] runningSum(int[] nums) {
        int[] sol = new int[nums.length];
        sol[0] = nums[0];
        for(int i = 1; i < nums.length; i++) {
            sol[i] = sol[i-1] + nums[i];
        }
        return sol;
    }
}

// Example: runningSum([1,3,6,9]) = [1, 4, 10, 19] = [1, 1+3, 1+3+6, 1+3+6+9]
JunJun

Java Sum of Array Elements

// Calculate the sum of all elements of an array

class Main {
 public static void main(String[] args) {
  
   // an array of numbers
   int[] numbers = {3, 4, 5, -5, 0, 12};
   int sum = 0;

   // iterating through each element of the array 
   for (int number: numbers) {
     sum += number;
   }
  
   System.out.println("Sum = " + sum);
 }
}
SAMER SAEID

Ответы похожие на “Java Sum of Array Elements”

Вопросы похожие на “Java Sum of Array Elements”

Больше похожих ответов на “Java Sum of Array Elements” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования