Findryan

Untitled

Nov 15th, 2016
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. class delapan
  2. {
  3. public static void main(String[] args)
  4. {
  5. char[] arraystr={'T','E','K','N','I','K',' ','I','N','F','O','R','M','T','I','K','A',' ','I','T','S'};
  6. System.out.println("Array Char ");
  7. for (int i=0; i<arraystr.length ; i++)
  8. {
  9. System.out.println(arraystr[i]);
  10. }
  11. System.out.println("String Baru : ");
  12. String str=String.copyValueOf(arraystr);
  13. System.out.println(str);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment