Guest User

Untitled

a guest
Feb 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package ex6;
  2.  
  3. public class PessoaTeste {
  4.    
  5.     public static void main(String[] args){
  6.        
  7.         Pessoa p1 = new Pessoa("A", 5);
  8.         p1.start();
  9.        
  10.         Pessoa p2 = new Pessoa("B", 3);
  11.         p2.start();
  12.        
  13.         Pessoa p3 = new Pessoa("C", 1);
  14.         p3.start();
  15.        
  16.     }
  17.  
  18. }
Add Comment
Please, Sign In to add comment