I am writing a Game of life program for my cs class, and I have all that well and good (although I wished I used a different structure now, but oh well). The problem I am having is that I cant read our input file correctly. It is set up as such: 1st number is the size of the board for the game of life, then the following lines are pairs of integers separated by a space that show what cells start with life. Then ending in -1 -1 to end it. I have tried several ways and I just cant get it to read it in correctly. I included code for the first way I tried which just involved using Scanner
ex:
5 4 1 2 3 -1 -1
int x;
Scanner in = new Scanner (new File(file));
x= in.nextInt();
char[][] board= new char[x][x];
while(in.hasNext())
{
if(in.nextInt() != -1)
board[in.nextInt()][in.nextInt()]='X';
}//end while