Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public static void main(String[] args){
  2.  
  3. String[] s = new String[]{"Anna","has", "apples"};
  4. System.out.println(StringUtilities.join(s, " "));
  5.  
  6. int[] a = new int[]{1,2,3};
  7. System.out.println(StringUtilities.join(a, " "));
  8.  
  9. Integer[] b = new Integer[]{1,2,3};
  10. System.out.println(StringUtilities.join(b, " "));
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement