Guys help me with this question , my code isnt working According to the specifications
You are given a program that takes the length of the array as the first input, creates it, and then takes the next inputs as elements of the array. Complete the program to go through the array and calculate the sum of the numbers that are multiples of 4. Sample Input 5 4 9 16 2 7 Sample Output 20 //My code import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int length = scanner.nextInt(); int sum=0; int[] array = new int[length]; for (int i = 0; i < length; i++) { array[i] = scanner.nextInt(); } for(int x=0; x < array.length; x++) { if(x %4==0){ sum+=array[x]; } } System.out.println(sum); } }