Advertisement
je0v4ne

Untitled

Aug 29th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class Programa {
  2.   public void soma() {
  3.     int x = 5, y = 7, resultado;    
  4.     resultado = x + y;
  5.   }
  6.  
  7.   public static void main(String[] args) {
  8.      Programa programa = new Programa();  
  9.      programa.soma();  
  10.   }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement