Advertisement
MirkoVa

Untitled

Oct 5th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Kamer
  2. {
  3. Gast gast;
  4. String achternaam, voornaam, geboorte;
  5.  
  6. public void kamerVul(Gast gast1)
  7. {
  8. // gast1 = (achternaam, voornaam, geboorte);
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. }
  16.  
  17.  
  18. public String toString()
  19. {
  20. return achternaam + ", " + voornaam + ", " + "(" + geboorte + ")";
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement