So I have this assignment for my Programming class, and I'm lost on what to do for the second part. This is the code I have so far:
class SingleArray
{
public static void main(String[]args)
{
int[] b=new int[]{5,10,15,20,25,30,35,40,45,50};
Not much I know, but I really am confused on how I would get it to fetch the different array values. Do I have to import the util scanner to do this? Any help to point me in the right direction? Thanks guys!