Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.11 seconds.

  1. Re: Parsing a string to an int while receiving user input?

    I'd say google is your friend here- you must understand what the static keyword does.

    Basically: normal, non-static variables and methods (like your user_input variable) must be a member of a...
  2. Re: Parsing a string to an int while receiving user input?

    This problem has nothing to do with user input. The main() method is a static method, which means it can only access static methods and variables. user_input is not a static variable.

    Your options...
Results 1 to 2 of 2