So im trying to write a simple java program for college and I\'m a complete newbie at this java stuff. I keep getting an error when I compile, \"error - could not find symbo
You aren't passing the variables, that's the problem. You declared them in main. However, if you declare them as static variables before the main method, that will work.