import java.util.Scanner;
public class Returnee
{
public Scanner nylro = new Scanner(System.in);
public static void main(String[]args)
{
int nums[] = new int [5];
int value;
for(int x=0 ; x<nums.length;x++)
{
System.out.println("Enter value "+ (x+1)+ ":");
nums[x] = nylro.nextInt();
}
}
}
/*Returnee.java:14: error: non-static variable nylro cannot be referenced from a static context
nums[x] = nylro.nextInt();
^
1 error*/