Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class PrimeiroPrograma {
  2.      // Variáveis ‘x’ e ‘y’ são Globais
  3.      int x;
  4.      int y;
  5.  
  6.      // Variáveis ‘x’ e ‘y’ são Locais
  7.      public void outroMetodo() {
  8.       int x = 2, y = 4;
  9.       this.x = 5;
  10.       this.y = 7;
  11.      }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement