Untitled

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class TestArray{

public static void main(String[] args)


{
int a[]= {10, 20, 30, 40, 50}; //Intialisation
//traversing array
for(int i=0; i<a.length;i++);
{
System.out.println(a[i]);
}
//Average calculation
float sum = 0, avg;
for(int i=; i<a.length;i++)
sum += a[i];
avg = sum/a.length;
System.out.println("Average = " =avg);
}
}

You might also like