![]() |
Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
Hey, yes there's a simple way to display the text vertically. It's the character for a new line - \n. If you're using it in a string, you can either have this System.out.println("a\nb") or System.out.println("a" + '\n' + "b"). So essentially, you just need to somehow insert a \n between each character. Hope this helps. If not, you can email me at hw_stuckie@hotmail.com. Replies: |
Sponsored Links
|