Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Test
  2. {
  3.  
  4. public static void printVertically(String s)
  5. {
  6. char[] c = s.toCharArray();
  7. for(int i = 0;i < c.length;i++)
  8. {
  9. System.out.println(c[i]);
  10. }
  11. }
  12. public static void main(String[] args)
  13. {
  14. Test.printVertically("hello there!");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement