Computer Science, asked by shreya13823, 10 months ago

Write a program in Java to calculate the average of first 10 even numbers and print it.

Answers

Answered by hassanraza121416
0

Explanation:

nnnnjjjoju OP kjkmmlpoo

Answered by Anonymous
0

Hey mate !!!

{

public static void main(String arg[])  

{

  int n=5,result=0;

 

  int a[]=new int[5];

 

  a[0]=10;

 

  a[1]=20;

 

  a[2]=30;

 

  a[3]=40;

 

  a[4]=50;

     

  for(int i=0;i<n;i++)

   result=result+a[i];

       

  System.out.println("average of  ("+a[0]+","+a[1]+","+a[2]+","+a[3]+","+a[4]+")  is ="+result/n);

 

}

}

Hope this helps you !!!!!

Similar questions