import java.util.Arrays;
import java.util.Scanner;
public class LeetCode_RunningSum {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int[] arr = {1,2,3,4};
System.out.println(Arrays.toString(out(arr)));
}
static int[] out(int[] nums){
int sum = 0;
int[] arr = new int[nums.length];
for (int i = 0; i < nums.length; i++){
sum += nums[i];
arr[i] = sum;
}
return arr;
}
}
class Solution {
public int[] runningSum(int[] nums) {
int[] ans = new int[nums.length];
ans[0] = nums[0];
for (int i = 1; i < nums.length; i++)
ans[i] = ans[i-1] + nums[i];
return ans;
}
}
// 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);
}
}
Input : arr[] = {1, 2, 3}
Output : 6
1 + 2 + 3 = 6
Input : arr[] = {15, 12, 13, 10}
Output : 50
15 + 12 + 13 + 10 = 50