Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public String[] geefAlleTemplateNamen(String[][] templateLijst){
  2. String[] lijst = new String[templateLijst.length];
  3. for(int i = 0; i < templateLijst.length; i++){
  4. lijst[i] = templateLijst[i][0];
  5. }
  6. return lijst;
  7. }
  8.  
  9. System.out.println(geefAlleTemplateNamen(templateLijst));
  10.  
  11. for (int i = 0; i < lijst.length; i++) { System.out.println(lijst[i]); }
  12.  
  13. for(String s: lijst)
  14. {
  15. System.out.println(s);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement