import java.util.*;
public class ArrayClass
{
public static void main()
{
Scanner
myscreen = new Scanner(System.in);
int[] numb = new int[5];
for (int count = 0; count<5; count++)
{
System.out.println("Enter a number");
numb[count] = myscreen.nextInt();
}
//add 10
to the 2nd and 5th
numb[1] = numb[1]+10;
numb[4] = numb[4]+10;
//print
them all out
for (int count = 0; count<5; count++)
{
System.out.println("The
number at " +
count + " is "+ numb[count]);
}
}
}