Guest User

Untitled

a guest
Jan 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public class Array
  2. {
  3. public static void main ( String [] args)
  4. {
  5. char [] arrch = {'A', 'B', 'C', 'D'};
  6. char [] another = {'a', 'b', 'c'};
  7.  
  8. arrch = another;
  9. another[1] = 'B';
  10. print(arrch);
  11. }
  12.  
  13. public static void print( char [] a )
  14. {
  15. System.out.print("[");
  16. for(int i = 0; i < a.length; i++)
  17. {
  18. System.out.print(" " + a[i] + " ");
  19. }
  20. System.out.println("]");
  21. }
  22. }
Add Comment
Please, Sign In to add comment