Hello all very advanced programmers.
I'm a amateur programmer still learning to climb the ropes. I am trying to run a certain program on Java but seem to get some errors that does not define itself any further.
These are the errors I am currently getting when I compile the program:
BrownianZombies.java:183: cannot resolve symbol
symbol : class Scanner
location: class BrownianZombies
static Scanner input;
^
BrownianZombies.java:217: cannot resolve symbol
symbol : class Scanner
location: class BrownianZombies
input = new Scanner(pr.getInputStream());
^
2 errors
What I did is I commented these two lines out, and try compiling again. Another error:
BrownianZombies.java:95: cannot resolve symbol
symbol : variable input
location: class BrownianZombies
String dir = input.next();
^
1 error
With this line I could not comment out, because there was a whole lot other variables to consider. So, I changed the above to String dir = "";
I am working with J2SDK 1.4.1_04.
Any ideas?
I've attached the program I'm working with, it is actually from another site. I'm just trying to run it to get an idea of what is required.
Ronica