Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public static String reverseConcat( String[] a )
  2. {
  3. String[] strengur = new String[];
  4. for (int i = a.length-1; i >=0; i--) {
  5. int temp = a[i];
  6. a[i] = a[a.length - 1 ];
  7. a[a.length - 1 ] = temp;
  8. strengur[i] = temp[i];
  9. }
  10. return strengur;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement