Computer Science, asked by ajithqtr15, 5 months ago

write a program using java to display the average of the elements in odd indices.​

Answers

Answered by abhichoudhary9881
0

Answer:

here's your answer

Explanation:

// Java program to find out

// Sum of elements at even and

// odd index positions separately

import java.io.*;

class EvenOddSum {

public static void main(String args[])

{

int arr[] = { 1, 2, 3, 4, 5, 6 };

int even = 0, odd = 0;

// Loop to find even, odd sum

for (int i = 0; i < arr.length; i++) {

if (i % 2 == 0)

even += arr[i];

else

odd += arr[i];

}

System.out.println("Even index positions sum: " + even);

System.out.println("Odd index positions sum: " + odd);

}

}

Similar questions