The problem you are having is due to the scope you declared your variables in.

Since you declared them in the main method, they are method variables (only exist in the scope of the main method). ...