Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class delapan
- {
- public static void main(String[] args)
- {
- char[] arraystr={'T','E','K','N','I','K',' ','I','N','F','O','R','M','T','I','K','A',' ','I','T','S'};
- System.out.println("Array Char ");
- for (int i=0; i<arraystr.length ; i++)
- {
- System.out.println(arraystr[i]);
- }
- System.out.println("String Baru : ");
- String str=String.copyValueOf(arraystr);
- System.out.println(str);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment